summaryrefslogtreecommitdiff
path: root/headers
diff options
context:
space:
mode:
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");
}