about summary refs log tree commit diff
path: root/main.c
diff options
context:
space:
mode:
authorManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2021-07-19 14:43:22 +0100
committerManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2021-07-19 14:43:22 +0100
commitf24b01fa9967873e575a56541c9dc7fd4a32eb45 (patch)
treed89fd6e584d98de09bded3cc119cc214ed746349 /main.c
parentFeature: Added registers (diff)
downloadCHIP8-Emulator-f24b01fa9967873e575a56541c9dc7fd4a32eb45.tar.gz
CHIP8-Emulator-f24b01fa9967873e575a56541c9dc7fd4a32eb45.tar.bz2
CHIP8-Emulator-f24b01fa9967873e575a56541c9dc7fd4a32eb45.zip
Misc: Load roms after 0x200
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.c b/main.c
index 53dd85c..48d35ee 100644
--- a/main.c
+++ b/main.c
@@ -21,12 +21,12 @@ int main(int argc, char** argv)
 
     printf("Hello brother!\n");
 
-    /*for(int i = 0; i < sizeof(emulator.memory); ++i)
+    for(int i = 0; i < sizeof(emulator.memory); ++i)
     {
         printf("%c ", emulator.memory[i]);
     }
 
-    putchar('\n');*/
+    putchar('\n');
 
     while(emulator.is_on)
     {