From eae92c43e1397d05a01050cc6fdb71c000eb22bb Mon Sep 17 00:00:00 2001 From: alekseiplusplus Date: Fri, 28 Apr 2023 13:37:11 +1000 Subject: expanded interpreter.c, starting test programs --- headers/debug.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'headers/debug.h') 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); } -- cgit v1.2.3