diff options
author | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-04-28 13:37:11 +1000 |
---|---|---|
committer | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-04-28 13:37:11 +1000 |
commit | eae92c43e1397d05a01050cc6fdb71c000eb22bb (patch) | |
tree | 7527bb41e1e11fa7bf1dbe39545eed11e4996362 /headers | |
parent | df566a054e6ee4b567bb1635073448ffc599a982 (diff) |
expanded interpreter.c, starting test programs
Diffstat (limited to 'headers')
-rw-r--r-- | headers/debug.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/headers/debug.h b/headers/debug.h index 4b36710..4c2a9ba 100644 --- a/headers/debug.h +++ b/headers/debug.h @@ -34,10 +34,10 @@ void dPageDump(short m){ // Dump CPU values void dStatusDump(void){ printf("\ -..acc:\t%x\tcycles:\t%d\n\ -....X:\t%x\tlength:\t%d\n\ -....Y:\t%x\t...add:\t%x\n\ -stack:\t%x\t.value:\t%x\n\ -flags:\t%x\n\ +\t..acc:\t%x\tcycles:\t%d\n\ +\t....X:\t%x\tlength:\t%d\n\ +\t....Y:\t%x\t...add:\t%x\n\ +\tstack:\t%x\t.value:\t%x\n\ +\tflags:\t%x\n\ ", acc, idata.cycles, X, idata.length, Y, idata.add, S, idata.value, P); } |