From 138bb8eeb4b67ab17a6d77e7afa9cd265759da0d Mon Sep 17 00:00:00 2001 From: alekseiplusplus Date: Sat, 29 Apr 2023 18:04:49 +1000 Subject: misc. fixes, finished LDA test. --- headers/debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'headers/debug.h') diff --git a/headers/debug.h b/headers/debug.h index 4c2a9ba..cb9cc85 100644 --- a/headers/debug.h +++ b/headers/debug.h @@ -25,7 +25,7 @@ void dPageDump(short m){ for(int i = 0; i < 256; i+=16){ printf("\t"); for(int j = 0; j < 16; j+=1){ - printf("%2x ", Memory[(m+(i+j))]); + printf("%02x ", Memory[(m+(i+j))]); } printf("\n"); } -- cgit v1.2.3