about summary refs log tree commit diff
path: root/main.c
diff options
context:
space:
mode:
authorManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2021-07-22 23:17:22 +0100
committerManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2021-07-22 23:17:22 +0100
commitddaa5907d5238adb782f52486efcf6a86951d7fd (patch)
treef9a205e775611e1a8a58aa562b47256f8b50f2ab /main.c
parentFeature: Implemented various instructions (diff)
downloadCHIP8-Emulator-ddaa5907d5238adb782f52486efcf6a86951d7fd.tar.gz
CHIP8-Emulator-ddaa5907d5238adb782f52486efcf6a86951d7fd.tar.bz2
CHIP8-Emulator-ddaa5907d5238adb782f52486efcf6a86951d7fd.zip
Feature: Implemented various instructions
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index 90e4bb2..d061a59 100644
--- a/main.c
+++ b/main.c
@@ -64,7 +64,7 @@ int main(int argc, char** argv)
             emulator.draw_flag = 0;
         }
 
-        usleep(1000000 / INSTRUCTIONS_PER_SECOND);
+        //usleep(1000000 / INSTRUCTIONS_PER_SECOND);
     }
 
     exit: