diff options
author | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2021-07-19 14:43:22 +0100 |
---|---|---|
committer | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2021-07-19 14:43:22 +0100 |
commit | f24b01fa9967873e575a56541c9dc7fd4a32eb45 (patch) | |
tree | d89fd6e584d98de09bded3cc119cc214ed746349 /main.c | |
parent | Feature: Added registers (diff) | |
download | CHIP8-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.c | 4 |
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) { |