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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
|
package main
import (
"fmt"
"strconv"
"strings"
)
func Reg8(_ *Labels, lastAbsoluteLabel string, _ *Definitions, param string) (uint16, error) {
switch param {
case "A":
return 7, nil
case "B":
return 0, nil
case "C":
return 1, nil
case "D":
return 2, nil
case "E":
return 3, nil
case "H":
return 4, nil
case "L":
return 5, nil
case "(HL)":
return 6, nil
}
return 0, fmt.Errorf("Invalid reg8")
}
func A(_ *Labels, lastAbsoluteLabel string, _ *Definitions, param string) (uint16, error) {
if param == "A" {
return 0, nil
}
return 0, fmt.Errorf("Invalid A")
}
func HL(_ *Labels, lastAbsoluteLabel string, _ *Definitions, param string) (uint16, error) {
if param == "HL" {
return 0, nil
}
return 0, fmt.Errorf("Invalid HL")
}
func SP(_ *Labels, lastAbsoluteLabel string, _ *Definitions, param string) (uint16, error) {
if param == "SP" {
return 0, nil
}
return 0, fmt.Errorf("Invalid SP")
}
func IndirectC(_ *Labels, lastAbsoluteLabel string, _ *Definitions, param string) (uint16, error) {
if param == "(C)" {
return 0, nil
}
return 0, fmt.Errorf("Invalid (C)")
}
func Reg16(_ *Labels, lastAbsoluteLabel string, _ *Definitions, param string) (uint16, error) {
switch param {
case "BC":
return 0, nil
case "DE":
return 1, nil
case "HL":
return 2, nil
case "AF":
return 3, nil
// TODO Split in two different for push and not push instructions
case "SP":
return 3, nil
}
return 0, fmt.Errorf("Invalid reg16")
}
func Raw8(
labels *Labels,
lastAbsoluteLabel string,
defs *Definitions,
param string,
) (uint16, error) {
if strings.HasPrefix(param, "high(") && strings.HasSuffix(param, ")") {
v, err := Raw16(labels, lastAbsoluteLabel, defs, param[5:len(param)-1])
if err != nil {
return 0, err
}
return uint16(v >> 8), nil
}
if strings.HasPrefix(param, "low(") && strings.HasSuffix(param, ")") {
v, err := Raw16(labels, lastAbsoluteLabel, defs, param[4:len(param)-1])
if err != nil {
return 0, err
}
return uint16(v & 0xff), nil
}
if strings.HasPrefix(param, "$") {
param = strings.ToUpper(strings.TrimPrefix(param, "$"))
if res, err := strconv.ParseUint(param, 16, 16); err == nil {
if len(param) > 2 {
return 0, fmt.Errorf("%s is > 8bit precision", param)
}
return uint16(res), nil
}
definition, ok := (*defs)[param]
if !ok {
return 0, fmt.Errorf("$%s is undefined", param)
}
res, ok := definition.(Raw8b)
if !ok {
return 0, fmt.Errorf("$%s is of type %T but Raw8b is expected", param, res)
}
return uint16(res), nil
}
if strings.HasPrefix(param, "0x") && len(param) > 4 {
return 0, fmt.Errorf("%s is > 8bit precision", param)
}
res, err := strconv.ParseUint(param, 0, 8)
return uint16(res), err
}
func Raw16(
labels *Labels,
lastAbsoluteLabel string,
defs *Definitions,
param string,
) (uint16, error) {
if strings.HasPrefix(param, "$") {
param = strings.ToUpper(strings.TrimPrefix(param, "$"))
if res, err := strconv.ParseUint(param, 16, 16); err == nil {
return uint16(res), nil
}
definition, ok := (*defs)[param]
if !ok {
return 0, fmt.Errorf("$%s is undefined", param)
}
res, ok := definition.(Raw16b)
if !ok {
return 0, fmt.Errorf("$%s is of type %T but Raw16b is expected", param, res)
}
return uint16(res), nil
}
if strings.HasPrefix(param, "=") {
var offset uint16 = 0
labelWithoutOffset := param[1:]
if strings.Contains(param, "+") {
labelParts := strings.Split(param[1:], "+")
if len(labelParts) != 2 {
return 0, fmt.Errorf(
"Labels with offset should have exactly 1 offset (in \"%s\")",
param[1:],
)
}
labelWithoutOffset = labelParts[0]
o, err := strconv.ParseUint(labelParts[1], 0, 16)
if err != nil {
return 0, fmt.Errorf("Error while parsing label offset: %w", err)
}
offset = uint16(o)
}
if labels == nil {
return 0, nil
}
if strings.HasPrefix(labelWithoutOffset, ".") {
if lastAbsoluteLabel == "" {
return 0, fmt.Errorf(
"Relative label \"%s\" referenced outside of parent",
labelWithoutOffset,
)
}
labelWithoutOffset = lastAbsoluteLabel + labelWithoutOffset
}
label := strings.ToUpper(strings.TrimPrefix(labelWithoutOffset, "="))
labelValue, ok := (*labels)[label]
if !ok {
return 0, fmt.Errorf("Label \"%s\" not found", label)
}
// TODO: Manage when multiple MBC
if labelValue > 0x8000 {
panic("Switchable ROM banks are not implemented yet")
}
return uint16(labelValue) + offset, nil
}
res, err := strconv.ParseUint(param, 0, 16)
return uint16(res), err
}
func Raw16MacroRelativeLabel(
labels *Labels,
lastAbsoluteLabel string,
defs *Definitions,
param string,
) (uint16, error) {
if !strings.HasPrefix(param, "=$") {
return 0, fmt.Errorf(
"label \"%s\" is external to the macro",
param,
)
}
return Raw16(labels, lastAbsoluteLabel, defs, param)
}
func Reg16Indirect(
_ *Labels,
lastAbsoluteLabel string,
_ *Definitions,
param string,
) (uint16, error) {
switch param {
case "(BC)":
return 0, nil
case "(DE)":
return 1, nil
case "(HL+)":
return 2, nil
case "(HL-)":
return 3, nil
}
return 0, fmt.Errorf("Invalid reg16 indirect")
}
func Raw8Indirect(
labels *Labels,
lastAbsoluteLabel string,
defs *Definitions,
param string,
) (uint16, error) {
if strings.HasPrefix(param, "$") {
param = strings.ToUpper(strings.TrimPrefix(param, "$"))
definition, ok := (*defs)[param]
if !ok {
return 0, fmt.Errorf("$%s is undefined", param)
}
res, ok := definition.(Indirect8b)
if !ok {
return 0, fmt.Errorf("$%s is of type %T but Indirect8bb is expected", param, res)
}
return uint16(res), nil
}
if len(param) < 2 || param[0] != '(' || param[len(param)-1] != ')' {
return 0, fmt.Errorf("Invalid raw8indirect")
}
res, err := Raw8(labels, lastAbsoluteLabel, defs, param[1:len(param)-1])
if err == nil {
return res, nil
}
return 0, err
}
func Raw16Indirect(
labels *Labels,
lastAbsoluteLabel string,
defs *Definitions,
param string,
) (uint16, error) {
if strings.HasPrefix(param, "$") {
param = strings.ToUpper(strings.TrimPrefix(param, "$"))
if labels == nil {
return 0, nil
}
definition, ok := (*defs)[param]
if !ok {
return 0, fmt.Errorf("$%s is undefined", param)
}
res, ok := definition.(Indirect16b)
if !ok {
return 0, fmt.Errorf("$%s is of type %T but Indirect16b expected", param, res)
}
return uint16(res), nil
}
if len(param) < 2 || param[0] != '(' || param[len(param)-1] != ')' {
return 0, fmt.Errorf("Invalid raw16indirect")
}
return Raw16(labels, lastAbsoluteLabel, defs, param[1:len(param)-1])
}
func Condition(_ *Labels, lastAbsoluteLabel string, _ *Definitions, param string) (uint16, error) {
switch param {
case "NZ":
return 0, nil
case "Z":
return 1, nil
case "NC":
return 2, nil
case "C":
return 3, nil
}
return 0, fmt.Errorf("Invalid condition")
}
func BitOrdinal(_ *Labels, lastAbsoluteLabel string, _ *Definitions, param string) (uint16, error) {
res, err := strconv.ParseUint(param, 0, 3)
return uint16(res), err
}
|