aboutsummaryrefslogtreecommitdiff
path: root/parameters.go
blob: 06202f946191c91eebc1d67d071593278f9c86db (plain)
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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
package main

import (
	"fmt"
	"strconv"
	"strings"
)

func parseOffset(param string) (string, uint16, error) {
	if strings.Contains(param, "+") {
		labelParts := strings.Split(param, "+")
		if len(labelParts) != 2 {
			return "", 0, fmt.Errorf(
				"Labels with offset should have exactly 1 offset (in \"%s\")",
				param,
			)
		}
		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)
		return labelWithoutOffset, offset, nil
	}
	return param, 0, nil
}

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, "inv(") && strings.HasSuffix(param, ")") {
		v, err := Raw8(labels, lastAbsoluteLabel, defs, param[4:len(param)-1])
		if err != nil {
			return 0, err
		}
		return uint16((256 / 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", param)
			}
			return uint16(res), nil
		}

		varWithoutOffset, offset, err := parseOffset(param)
		if err != nil {
			return 0, err
		}

		definition, ok := (*defs)[varWithoutOffset]
		if !ok {
			return 0, fmt.Errorf("$%s is undefined", varWithoutOffset)
		}

		res, ok := definition.(Raw8b)
		if !ok {
			return 0, fmt.Errorf(
				"$%s is of type %T but Raw8b is expected",
				varWithoutOffset,
				definition,
			)
		}

		if uint16(res)+offset > 0xff {
			return 0, fmt.Errorf(
				"overflow: $%s (0x%02x) + 0x%02x exceeds 0xff",
				varWithoutOffset,
				uint16(res),
				offset,
			)
		}

		return uint16(res) + offset, nil
	}
	if strings.HasPrefix(param, "0x") && len(param) > 4 {
		return 0, fmt.Errorf("%s is > 8bit", 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.Contains(param, "-") {
		spl := strings.Split(param, "-")

		v, err := Raw16(labels, lastAbsoluteLabel, defs, spl[0])
		if err != nil {
			return 0, err
		}
		result := v

		for _, arg := range spl[1:] {
			v, err := Raw16(labels, lastAbsoluteLabel, defs, arg)
			if err != nil {
				return 0, err
			}
			result -= v
		}

		return result, nil
	}

	if strings.HasPrefix(param, "$") {
		param = strings.ToUpper(strings.TrimPrefix(param, "$"))
		if res, err := strconv.ParseUint(param, 16, 16); err == nil {
			return uint16(res), nil
		}

		varWithoutOffset, offset, err := parseOffset(param)
		if err != nil {
			return 0, err
		}

		definition, ok := (*defs)[varWithoutOffset]
		if !ok {
			return 0, fmt.Errorf("$%s is undefined", varWithoutOffset)
		}

		res, ok := definition.(Raw16b)
		if !ok {
			return 0, fmt.Errorf(
				"$%s is of type %T but Raw16b is expected",
				varWithoutOffset,
				definition,
			)
		}

		if uint32(res)+uint32(offset) > 0xffff {
			return 0, fmt.Errorf(
				"overflow: $%s (0x%04x) + 0x%04x exceeds 0xffff",
				varWithoutOffset,
				uint16(res),
				offset,
			)
		}

		return uint16(res) + offset, nil
	}

	if strings.HasPrefix(param, "=") {
		labelWithoutOffset, offset, err := parseOffset(param[1:])
		if err != nil {
			return 0, err
		}

		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, definition)
		}
		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, definition)
		}
		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
}