diff options
author | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2021-07-19 17:17:05 +0100 |
---|---|---|
committer | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2021-07-19 17:17:05 +0100 |
commit | 63dd156d873bb96eeaa19b78f9baccacf2f977fd (patch) | |
tree | a0dc1c223550e3b33fc2c90c6f555fce789bdfc7 /main.c | |
parent | Feature: Implemented instructions to run the logo rom (diff) | |
download | CHIP8-Emulator-63dd156d873bb96eeaa19b78f9baccacf2f977fd.tar.gz CHIP8-Emulator-63dd156d873bb96eeaa19b78f9baccacf2f977fd.tar.bz2 CHIP8-Emulator-63dd156d873bb96eeaa19b78f9baccacf2f977fd.zip |
Misc: Added the dbgprintf() macro
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/main.c b/main.c index 94e4a95..b97ab9f 100644 --- a/main.c +++ b/main.c @@ -23,13 +23,6 @@ int main(int argc, char** argv) printf("Hello brother!\n"); - /*for(int i = 0; i < sizeof(emulator.memory); ++i) - { - printf("0x%x ", emulator.memory[i]); - } - - putchar('\n');*/ - while(emulator.is_on == 1) { emulator_tick(&emulator); |