about summary refs log tree commit diff
path: root/main.c
diff options
context:
space:
mode:
authorManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2021-07-19 17:17:05 +0100
committerManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2021-07-19 17:17:05 +0100
commit63dd156d873bb96eeaa19b78f9baccacf2f977fd (patch)
treea0dc1c223550e3b33fc2c90c6f555fce789bdfc7 /main.c
parentFeature: Implemented instructions to run the logo rom (diff)
downloadCHIP8-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.c7
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);