summaryrefslogtreecommitdiff
path: root/emulator/hart.h
diff options
context:
space:
mode:
Diffstat (limited to 'emulator/hart.h')
-rw-r--r--emulator/hart.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/emulator/hart.h b/emulator/hart.h
new file mode 100644
index 0000000..5e9d451
--- /dev/null
+++ b/emulator/hart.h
@@ -0,0 +1,16 @@
+#pragma once
+
+#include <stdint.h>
+
+struct Hart
+{
+ uint32_t pc;
+ uint32_t regs[32];
+ char* mem;
+ uint32_t mem_size;
+};
+typedef struct Hart Hart;
+
+void execute(Hart* hart, uint32_t instruction);
+void execute_from(Hart* hart, uint32_t start_address);
+