-
Notifications
You must be signed in to change notification settings - Fork 25
/
opcodegen.asm
277 lines (250 loc) · 3.59 KB
/
opcodegen.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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
; Allocate at 256-byte aligned cursor memory
opgenroutines:
opgen08:
jp _opgen08
opgen36:
jp _opgen36
opgenE0:
jp opgenFFwrite
opgenEA:
jp opgenCONSTwrite
opgenF0:
jp opgenFFread
opgenFA:
jp opgenCONSTread
opgenHLread:
jp opgen_emit_hl_read
opgenHLwrite:
jp opgen_emit_hl_write
opgenHLreadwrite:
jp opgen_emit_hl_readwrite
opgenHLread_post:
jp opgen_emit_hl_read_post
opgenHLwrite_post:
jp opgen_emit_hl_write_post
opgenHLread_bc:
jp opgen_emit_hl_read_bc
opgenHLwrite_bc:
jp opgen_emit_hl_write_bc
opgenDEread:
jp opgen_emit_de_read
opgenDEwrite:
jp opgen_emit_de_write
opgenBCread:
jp opgen_emit_bc_read
opgenBCwrite:
jp opgen_emit_bc_write
opgenCALLcond:
jp _opgenCALLcond
opgenCALL:
jp _opgenCALL
opgenRST:
jp _opgenRST
opgenJR:
opgenJP:
jp opgen_emit_jump
opgenRETcond:
jp opgen_emit_cond_ret
opgenE9:
opgenRET:
opgenRETI:
jp opgenblockend
opgenE8:
dec iyl
opgenF8:
call opgenroutinecall_displacement
djnz opgen_next_fast
opgen31:
call _opgen31
djnz opgen_next_fast
opgenPUSH:
dec iyl
opgenF1:
dec iyl
opgen39:
opgenF9:
dec iyl
opgen27:
opgenF3:
opgenEI:
call opgenroutinecall
djnz opgen_next_fast
opgenPOP:
dec iyl
opgen33:
opgen3B:
call opgenroutinecall_2cc
ld a,$08 ;EX AF,AF'
ld (de),a
inc de
djnz opgen_next_fast
opgen01:
ld a,$DD
ld (de),a
inc de
ld a,$21
ld (de),a
inc de
inc hl
inc c
jr opgen2byte
opgen3byte_remap:
inc b
ld a,(bc)
ld (de),a
inc de
inc hl
djnz opgen2byte
opgen2byte_remap_ix:
ld a,$DD
ld (de),a
opgen2byte_remap_inc:
inc de
opgen2byte_remap:
inc b
ld a,(bc)
ld (de),a
inc de
inc hl
djnz opgen1byte
opgen1byte_remap_ix:
ld a,$DD
ld (de),a
opgen1byte_remap_inc:
inc de
opgen1byte_remap:
inc b
ld a,(bc)
ld (de),a
inc de
inc hl
djnz opgen_next_fast
opgen1byte_2cc_remap_ix:
ld a,$DD
ld (de),a
opgen1byte_2cc_remap_inc:
inc de
opgen1byte_2cc_remap:
inc b
ld a,(bc)
ld (de),a
inc de
inc hl
dec iyl
djnz opgen_next_fast
opgenNOP:
inc hl
jr opgen_next_fast
opgenCB:
jp _opgenCB
opgenHALT_STOP:
jp _opgenHALT_STOP
opgen2byte:
ldi
opgen1byte:
ldi
opgen_next_fast:
ld c,(hl)
ld a,iyh
sub l
ret m
opgen_next_no_bound_check:
ld a,(bc)
ld ixl,a
jp (ix)
opgen09:
ex de,hl
ld (hl),$ED ;LEA HL,IX
inc hl
ld (hl),$22
inc hl
ld (hl),$00
ld c,$19
jr _
opgen19:
opgen29:
res 4,c
ex de,hl
ld (hl),$EB ;EX DE,HL
_
inc hl
ld (hl),c
opgen_next_ex_swap_skip_1cc:
inc hl
ld (hl),$EB ;EX DE,HL
opgen_next_swap_skip_1cc:
dec iyl
opgen_next_swap_skip:
ex de,hl
opgen_next_skip:
inc de
inc hl
opgen_next:
ld bc,opgentable
jr opgen_next_fast
opgenINVALID:
jp opgenblockend_invalid
opgen3F:
jr _opgen3F
opgenE2:
opgenF2:
jr _opgenLDH_C
opgenJRcond:
jr _opgenJRcond
opgenJPcond:
jr _opgenJPcond
opgenROT:
ex de,hl
.echo "Opgen routine size: ", $ - opgenroutines
bit 4,c
jr z,opgenROT_rlca_rrca
ld (hl),$2E ;LD L,
inc hl
ld (hl),c
inc hl
ld (hl),$2C ;INC L
jr opgenROTfinish
opgenROT_rlca_rrca:
ld (hl),$ED ;LD HL,I
inc hl
ld (hl),$D7
opgenROTfinish:
inc hl
ld (hl),c
inc hl
inc de
ex de,hl
jr opgen_next_fast
_opgenLDH_C:
bit 4,c
jp z,_opgenE2
call opgen_emit_load_cycle_offset_swap_1cc
ex de,hl
call opgenroutinecall
djnz opgen_next_fast
_opgen3F:
ex de,hl
ld (hl),c
inc hl
; Reset H and N flags, preserve Z and C flags
ld (hl),$1F ;RRA
ld c,$17 ;RLA
jr opgenROTfinish
_opgenJRcond:
ld a,$20 ^ $28
_
xor c
ld (de),a
inc de
ld a,11
ld (de),a
inc de
call opgen_emit_jump
ld a,e
sub iyh
jp m,opgen_emit_subblock_bridge
; If block is ending, combine the subblock and end-of-block bridges
jp opgen_emit_subblock_combined_bridge
_opgenJPcond:
ld a,$C2 ^ $28
jr -_