about summary refs log tree commit diff
path: root/emulator.h
diff options
context:
space:
mode:
authorManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2021-07-19 16:49:26 +0100
committerManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2021-07-19 16:49:26 +0100
commit28a7f4246ee835c5512d3ade308ffc85aec33733 (patch)
treef0fa106b8ddffebff7173f6dbaa07aa5d71671cf /emulator.h
parentFeature: Added basic instruction decoding (diff)
downloadCHIP8-Emulator-28a7f4246ee835c5512d3ade308ffc85aec33733.tar.gz
CHIP8-Emulator-28a7f4246ee835c5512d3ade308ffc85aec33733.tar.bz2
CHIP8-Emulator-28a7f4246ee835c5512d3ade308ffc85aec33733.zip
Feature: Added placeholder for basic instructions needed to run the logo rom
Diffstat (limited to 'emulator.h')
-rw-r--r--emulator.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/emulator.h b/emulator.h
index 50fa9de..78ae516 100644
--- a/emulator.h
+++ b/emulator.h
@@ -44,5 +44,6 @@ typedef struct
 int emulator_initialise(Emulator* emulator);
 int emulator_load_rom(Emulator* emulator, char* rom_name);
 int emulator_tick(Emulator* emulator);
+void emulator_dump_registers(Emulator* emulator);
 
 #endif