summaryrefslogtreecommitdiff
path: root/debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'debug.h')
-rw-r--r--debug.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug.h b/debug.h
index 85520ca..0ef38ce 100644
--- a/debug.h
+++ b/debug.h
@@ -21,7 +21,7 @@ int dCharToNum(char c){
// Dump a particular page in memory.
void dPageDump(short m){
- m *= 0x0100;
+ m <<= 8;
for(int i = 0; i < 256; i+=16){
printf("\t");
for(int j = 0; j < 16; j+=1){