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
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
|
/*
Copyright 2021, 2022 Gabriel Jensen
This file is part of luma.
luma is free software: you can redistribute it and/or modify it under the
terms of the GNU Affero General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your
option) any later version.
luma is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
License for more details.
You should have received a copy of the GNU Affero General Public License
along with luma. If not, see <https://www.gnu.org/licenses/>.
*/
#include "luma.h"
#include <inttypes.h>
#include <stdio.h>
#include <string.h>
/*
OPCODES:
HEX : NAME : PARAMETERS : FULL NAME
00 : IGN : : IGNORE
01 : CPY : ptr ,ptr : COPY
02 : SET : ptr ,byte : SET
03 : INC : ptr : INCREMENT
04 : DEC : ptr : DECREMENT
05 : JMP : ptr : JUMP
06 : DIE : : DIE
07 : BNK : byte : LOAD BANK
08 : TRP : : TRAP
09 : CMP : ptr ,ptr : COMPARE
0A : JEQ : ptr : JUMP IF EQUAL
0B : JLT : ptr : JUMP IF LESS THAN
0C : JGT : ptr : JUMP IF GREATER THAN
0D : JLE : ptr : JUMP IF LESS THAN OR EQUAL
0E : JGE : ptr : JUMP IF GREATER THAN OR EQUAL
0F : ICD : ptr : INCREMENT DOUBLE
10 : DCD : ptr : DECREMENT DOUBLE
11 : CPD : ptr ,ptr : COMPARE DOUBLE
12 : ADB : ptr ,ptr : ADD BYTE
13 : ADD : ptr ,ptr : ADD DOUBLE
14 : SUB : ptr ,ptr : SUBTRACT
15 : SBD : ptr ,ptr : SUBTRACT DOUBLE
16 : MUL : ptr ,ptr : MULTIPLY
17 : MLD : ptr ,ptr : MULTIPLY DOUBLE
18 : DIV : ptr ,ptr : DIVIDE
19 : DVD : ptr ,ptr : DIVIDE DOUBLE
1A : OUT : byte,ptr : OUTPUT
1B : INP : byte,ptr : INPUT
*/
typedef void (* luma_opcdHandlTer)(void);
static void luma_opcdHandl_ilg(void);
static void luma_opcdHandl_ign(void);
static void luma_opcdHandl_cpy(void);
static void luma_opcdHandl_set(void);
static void luma_opcdHandl_inc(void);
static void luma_opcdHandl_dec(void);
static void luma_opcdHandl_jmp(void);
static void luma_opcdHandl_die(void);
static void luma_opcdHandl_bnk(void);
static void luma_opcdHandl_trp(void);
static void luma_opcdHandl_cmp(void);
static void luma_opcdHandl_jeq(void);
static void luma_opcdHandl_jlt(void);
static void luma_opcdHandl_jgt(void);
static void luma_opcdHandl_jle(void);
static void luma_opcdHandl_jge(void);
static void luma_opcdHandl_icd(void);
static void luma_opcdHandl_dcd(void);
static void luma_opcdHandl_cpd(void);
luma_opcdHandlTer luma_opcdHandls[0x100] = {
luma_opcdHandl_ign,
luma_opcdHandl_cpy,
luma_opcdHandl_set,
luma_opcdHandl_inc,
luma_opcdHandl_dec,
luma_opcdHandl_jmp,
luma_opcdHandl_die,
luma_opcdHandl_bnk,
luma_opcdHandl_trp,
luma_opcdHandl_cmp,
luma_opcdHandl_jeq,
luma_opcdHandl_jlt,
luma_opcdHandl_jgt,
luma_opcdHandl_jle,
luma_opcdHandl_jge,
luma_opcdHandl_icd,
luma_opcdHandl_dcd,
luma_opcdHandl_cpd,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
luma_opcdHandl_ilg,
};
void luma_proc() {
luma_opcdHandls[luma_mem[luma_instrPtr]]();
luma_instrPtr += 0x1;
}
static void luma_opcdHandl_ilg(void) {
fprintf(stderr,"! ILG-%" PRIX8 " @%" PRIX16 "\n",luma_mem[luma_instrPtr],luma_instrPtr);
}
static void luma_opcdHandl_ign(void) {}
static void luma_opcdHandl_cpy(void) {
luma_dbl const dest = luma_getDbl(luma_instrPtr + 0x1);
luma_dbl const src = luma_getDbl(luma_instrPtr + 0x3);
luma_log("CPY @%" PRIX16 " %" PRIX16 " %" PRIX16 "\n",luma_instrPtr,src,dest);
luma_setByte(dest,luma_mem[src]);
luma_instrPtr += 0x4;
}
static void luma_opcdHandl_set(void) {
luma_dbl const dest = luma_getDbl(luma_instrPtr + 0x1);
luma_byte const val = luma_mem[luma_instrPtr + 0x3];
luma_log("SET @%" PRIX16 " %" PRIX16 " %" PRIX8 "\n",luma_instrPtr,dest,val);
luma_setByte(dest,val);
luma_instrPtr += 0x3;
}
static void luma_opcdHandl_inc(void) {
luma_dbl const addr = luma_getDbl(luma_instrPtr + 0x1);
luma_log("INC %" PRIX16 "\n",addr);
luma_setByte(addr,luma_mem[addr] + 0x1);
luma_instrPtr += 0x2;
}
static void luma_opcdHandl_dec(void) {
luma_dbl const addr = luma_getDbl(luma_instrPtr + 0x1);
luma_log("DEC %" PRIX16 "\n",addr);
luma_setByte(addr,luma_mem[addr] - 0x1);
luma_instrPtr += 0x2;
}
static void luma_opcdHandl_jmp(void) {
luma_dbl const dest = luma_getDbl(luma_instrPtr + 0x1);
luma_log("JMP @%" PRIX16 " %" PRIX16 "\n",luma_instrPtr,dest);
luma_instrPtr = dest - 0x1; /* Compensate for the incremention by luma_proc. */
}
static void luma_opcdHandl_die(void) {
luma_log("DIE @%" PRIX16 "\n",luma_instrPtr);
luma_dead = true;
}
static void luma_opcdHandl_bnk(void) {
luma_byte const banknum = luma_mem[luma_instrPtr + 0x1];
luma_log("BNK @%" PRIX16 " %" PRIX8 "\n",luma_instrPtr,banknum);
luma_ldBank(banknum);
luma_instrPtr += 0x1;
}
static void luma_opcdHandl_trp(void) {
luma_log("TRP @%" PRIX16 "\n",luma_instrPtr);
luma_memDump();
for (;;) {}
}
static void luma_opcdHandl_cmp(void) {
luma_byte const lval = luma_mem[luma_getDbl(luma_instrPtr + 0x1)];
luma_byte const rval = luma_mem[luma_getDbl(luma_instrPtr + 0x3)];
luma_log("CMP @%" PRIX16 " %" PRIX8 " %" PRIX8 ": ",luma_instrPtr,lval,rval);
if (lval < rval) {
luma_result = 0x0;
}
else if (lval > rval) {
luma_result = 0x2;
}
else {
luma_result = 0x1;
}
luma_log("%" PRIX8 "\n",luma_result);
luma_instrPtr += 0x4;
}
static void luma_opcdHandl_jeq(void) {
luma_log("JEQ @%" PRIX16 ": ",luma_instrPtr);
if (luma_result == 0x1) {
luma_dbl const dest = luma_getDbl(luma_instrPtr + 0x1);
luma_log("%" PRIX16 "\n",dest);
luma_instrPtr = dest - 0x1; /* Compensate for the incremention by luma_proc. */
}
else {
luma_log("%" PRIX16 "\n",luma_instrPtr);
luma_instrPtr += 0x2;
}
}
static void luma_opcdHandl_jlt(void) {
luma_log("JLT @%" PRIX16 ": ",luma_instrPtr);
if (luma_result == 0x0) {
luma_dbl const dest = luma_getDbl(luma_instrPtr + 0x1);
luma_log("%" PRIX16 "\n",dest);
luma_instrPtr = dest - 0x1; /* Compensate for the incremention by luma_proc. */
}
else {
luma_log("%" PRIX16 "\n",luma_instrPtr);
luma_instrPtr += 0x2;
}
}
static void luma_opcdHandl_jgt(void) {
luma_log("JGT @%" PRIX16 ": ",luma_instrPtr);
if (luma_result == 0x2) {
luma_dbl const dest = luma_getDbl(luma_instrPtr + 0x1);
luma_log("%" PRIX16 "\n",dest);
luma_instrPtr = dest - 0x1; /* Compensate for the incremention by luma_proc. */
}
else {
luma_log("%" PRIX16 "\n",luma_instrPtr);
luma_instrPtr += 0x2;
}
}
static void luma_opcdHandl_jle(void) {
luma_log("JLE @%" PRIX16 ": ",luma_instrPtr);
if (luma_result == 0x0 || luma_result == 0x1) {
luma_dbl const dest = luma_getDbl(luma_instrPtr + 0x1);
luma_log("%" PRIX16 "\n",dest);
luma_instrPtr = dest - 0x1; /* Compensate for the incremention by luma_proc. */
}
else {
luma_log("%" PRIX16 "\n",luma_instrPtr);
luma_instrPtr += 0x2;
}
}
static void luma_opcdHandl_jge(void) {
luma_log("JGE @%" PRIX16 ": ",luma_instrPtr);
if (luma_result == 0x2 || luma_result == 0x1) {
luma_dbl const dest = luma_getDbl(luma_instrPtr + 0x1);
luma_log("%" PRIX16 "\n",dest);
luma_instrPtr = dest - 0x1; /* Compensate for the incremention by luma_proc. */
}
else {
luma_log("%" PRIX16 "\n",luma_instrPtr);
luma_instrPtr += 0x2;
}
}
static void luma_opcdHandl_icd(void) {
}
static void luma_opcdHandl_dcd(void) {
}
static void luma_opcdHandl_cpd(void) {
luma_dbl const lval = luma_mem[luma_instrPtr + 0x1];
luma_dbl const rval = luma_mem[luma_instrPtr + 0x2];
luma_log("CPD %" PRIX16 " %" PRIX16 ": ",lval,rval);
if (lval < rval) {
luma_result = 0x0;
}
else if (lval > rval) {
luma_result = 0x2;
}
else {
luma_result = 0x1;
}
luma_log("%" PRIX8 "\n",luma_result);
luma_instrPtr += 0x2;
}
|