diff options
author | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-04-11 13:30:17 +1000 |
---|---|---|
committer | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-04-11 13:30:17 +1000 |
commit | 07980e780e331352ea81d0176d9028325968a771 (patch) | |
tree | 8364d564b93ca7abbb190a308abaf205bdb04487 /debug.h | |
parent | 3f3574efb1e1c27d2f471c9b4a87a9786326e773 (diff) |
interpreter.c can run, but segfaults.
Diffstat (limited to 'debug.h')
-rw-r--r-- | debug.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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){ |