diff options
Diffstat (limited to 'sources/meta')
-rw-r--r-- | sources/meta/disasm.c | 3 | ||||
-rw-r--r-- | sources/meta/exec.c | 34 | ||||
-rw-r--r-- | sources/meta/undef.c | 3 |
3 files changed, 34 insertions, 6 deletions
diff --git a/sources/meta/disasm.c b/sources/meta/disasm.c index 66c1478..82e715e 100644 --- a/sources/meta/disasm.c +++ b/sources/meta/disasm.c @@ -1,3 +1,6 @@ +#define X_C8_PRELUDE +#define X_C8_EPILOGUE + #define X_C8_ILL sprintf(usrdat, "%04X ILL unknown", instr) #define X_C8_CLS sprintf(usrdat, "%04X CLS", instr) #define X_C8_RET sprintf(usrdat, "%04X RET", instr) diff --git a/sources/meta/exec.c b/sources/meta/exec.c index b913390..a39aef2 100644 --- a/sources/meta/exec.c +++ b/sources/meta/exec.c @@ -1,11 +1,33 @@ -/* FIXME: add a one time init and deinit to generate macro */ -#define BEGIN \ -do{ \ - chip8* c8 = usrdat; \ - assert(c8); - +#define BEGIN do{ #define END }while(0) +#define X_C8_PRELUDE \ + chip8* c8 = usrdat; \ + assert(c8); \ +\ + if(c8->pc >= sizeof(c8->mem)) \ + { \ + report(ERR, "CHIP-8: PC(%04X) Overflow!\n", c8->pc); \ + c8->running = false; \ + } \ +\ + if(c8->pc & 0x0001) \ + { \ + report(ERR, "CHIP-8: PC(%04X) is not aligned!\n", c8->pc); \ + c8->running = false; \ + } + +#define X_C8_EPILOGUE \ +BEGIN \ + c8->cycles++; \ + if((c8->cycles % C8_CYCLES_PER_FRAME) == 0) \ + { \ + if(c8->dt) c8->dt--; \ + if(c8->st) c8->st--; \ + } \ + c8->pc += 2; \ +END + #define X_C8_ILL \ BEGIN \ c8->running = false; \ diff --git a/sources/meta/undef.c b/sources/meta/undef.c index 1863e9b..01ce25f 100644 --- a/sources/meta/undef.c +++ b/sources/meta/undef.c @@ -1,3 +1,6 @@ +#undef X_C8_PRELUDE +#undef X_C8_EPILOGUE + #undef X_C8_ILL #undef X_C8_CLS #undef X_C8_RET |