about summary refs log tree commit diff
path: root/emulator.h
diff options
context:
space:
mode:
Diffstat (limited to 'emulator.h')
-rw-r--r--emulator.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/emulator.h b/emulator.h
index e69de29..edffa47 100644
--- a/emulator.h
+++ b/emulator.h
@@ -0,0 +1,17 @@
+#ifndef _EMULATOR_H_
+#define _EMULATOR_H_
+
+#include <stdio.h>
+#include  <sys/stat.h>
+
+typedef struct
+{
+    uint8_t is_on;
+    uint16_t pc;
+    uint8_t memory[4096];
+} Emulator;
+
+int emulator_load_rom(Emulator* emulator, char* rom_name);
+int emulator_tick(Emulator* emulator);
+
+#endif