summaryrefslogtreecommitdiff
path: root/sources/instr.c
diff options
context:
space:
mode:
authordweller <dweller@cabin.digital>2025-03-26 18:25:34 +0200
committerdweller <dweller@cabin.digital>2025-03-26 18:25:34 +0200
commit42e9b31e0d7324106a65ad9ff42ea2377a80fa51 (patch)
treeceee87f9e0067b6d5c71f5e728fe0b3fd0fd8b72 /sources/instr.c
parent76d89eb9973671726dc7fffaf22b06a7a77be550 (diff)
fix disasm not showing instruction hex; implement a few instructions exec; add report logger
Diffstat (limited to 'sources/instr.c')
-rw-r--r--sources/instr.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/sources/instr.c b/sources/instr.c
index 8c0b132..72511f1 100644
--- a/sources/instr.c
+++ b/sources/instr.c
@@ -61,6 +61,13 @@ void c8_##name(u8* code, u16 offset, void* usrdat) \
n = (instr & 0x000F); \
kk = (instr & 0x00FF); \
\
+ (void)o; \
+ (void)nnn; \
+ (void)x; \
+ (void)y; \
+ (void)n; \
+ (void)kk; \
+ \
if(o == 0 && nnn == 0x0E0) X_C8_CLS; \
else if(o == 0 && nnn == 0x0EE) X_C8_RET; \
else if(o == 0) X_C8_SYS; \
@@ -100,3 +107,4 @@ void c8_##name(u8* code, u16 offset, void* usrdat) \
}
#include "meta/disasm.c"
+#include "meta/exec.c"