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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
;
; example.asm for TR8
;
.org 0
; ; copy 16K from 0x0000 to 0xbf00
; ;
; start:
; ld a, 0
; ld b, 0xbf
; ld x, 0
; ld y, 0x40
; loop:
; push y
; ld y, [a : x]
; ld [b : x], y
; pop y
; inc x
; bno
; jmp loop
; inc a
; inc b
; dec y
; bnz
; jmp loop
;
ld b, 15
call fill
halt
;
; ; void copy(void *dst, void *src, uint16_t size)
; ; size = 0x1000
; ; src = 0
; ; dst 0xbf00
; ld a, 0x10
; push a
; ld a, 0
; push a
; push a
; push a
; ld a, 0xbf
; push a
; ld a, 0
; push a
; call copy
; pop a
; pop a
; pop a
; pop a
; pop a
; pop a
; halt
; fill frame-buffer with a color in reg b
fill:
ld a, 0xbf
ld x, 0
ld y, 0x40
fill_loop:
ld [a : x], b
inc x
bno
jmp fill_loop
inc a
dec y
bnz
jmp fill_loop
ret
; void copy(void *dst, void *src, uint16_t size)
;
; using C calling convention with the stack
; not used, but return value in a (8-bit), a: x (16-bit)
; copy:
; ld x, [sp + 6]
; ld a, [sp + 7] ; size a:x
;
; ; local variable
; push a
; push x
;
; ld y, [sp + 4]
; ld b, [sp + 5] ; dst b:y
; ld x, [sp + 6]
; ld a, [sp + 7] ; src a:x
; copy_loop:
; ; copy byte from a:x to b:y
; push x
; ld x, [a : x]
; ld [b : y], x
; pop x
;
; ; inc a:x
; inc x
; bo
; inc a
;
; ; inc b:y
; inc y
; bo
; inc b
;
; ; dec local var size
; push a
; push x
; ld x, [sp + 2]
; ld a, [sp + 3]
; dec x
; bo
; dec a
; ld [sp + 2], x
; ld [sp + 3], a
; or x, a
; pop x
; pop a
;
; bnz
; jmp copy_loop
;
; pop x
; pop x ; free local var
; ret
;
;
|