-
Notifications
You must be signed in to change notification settings - Fork 1
/
splash.asm
70 lines (51 loc) · 1.25 KB
/
splash.asm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
DrawSplashScreen:
rcall ClearScreen
ldi r16, 10
ldi r17, 3
ldi Zl, LOW(stringTetris*2)
ldi Zh, HIGH(stringTetris*2)
rcall DrawString
ldi r16, 10
ldi r17, 6
ldi Zl, LOW(stringAutor*2)
ldi Zh, HIGH(stringAutor*2)
rcall DrawString
ldi r16, 6
ldi r17, 8
ldi Zl, LOW(stringJakubCzekanski*2)
ldi Zh, HIGH(stringJakubCzekanski*2)
rcall DrawString
ldi r16, 6
ldi r17, 15
ldi Zl, LOW(stringNacisnij1*2)
ldi Zh, HIGH(stringNacisnij1*2)
rcall DrawString
ldi r16, 6
ldi r17, 17
ldi Zl, LOW(stringNacisnij2*2)
ldi Zh, HIGH(stringNacisnij2*2)
rcall DrawString
ldi r16, 4
ldi r17, 22
ldi Zl, LOW(stringinfo1*2)
ldi Zh, HIGH(stringinfo1*2)
rcall DrawString
ldi r16, 5
ldi r17, 24
ldi Zl, LOW(stringinfo2*2)
ldi Zh, HIGH(stringinfo2*2)
rcall DrawString
ldi r16, 6
ldi r17, 27
ldi Zl, LOW(stringinfo3*2)
ldi Zh, HIGH(stringinfo3*2)
rcall DrawString
ret
stringTetris: .DB "TETRIS", 0
stringAutor: .DB "AUTOR", 0
stringJakubCzekanski: .DB "JAKUB CZEKANSKI", 0
stringNacisnij1: .DB "START GRAJ", 0
stringNacisnij2: .DB " A WYNIKI", 0
stringinfo1: .DB "PROJEKT WYKONANY NA ", 0
stringinfo2: .DB "KONKURS GRA RETRO" ,0
stringinfo3: .DB " ELEKTRODA.PL", 0