summaryrefslogtreecommitdiff
path: root/headers
diff options
context:
space:
mode:
authoralekseiplusplus <alekseijeaves@protonmail.com>2023-04-29 18:04:49 +1000
committeralekseiplusplus <alekseijeaves@protonmail.com>2023-04-29 18:04:49 +1000
commit138bb8eeb4b67ab17a6d77e7afa9cd265759da0d (patch)
treebcafea69e68333a5b8b6a2e3263dd1a46b996648 /headers
parent1c30dea63b65c7e117b3fd8ba0140dbf77a0ef73 (diff)
misc. fixes, finished LDA test.
Diffstat (limited to 'headers')
-rw-r--r--headers/debug.h2
1 files changed, 1 insertions, 1 deletions
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");
}