summaryrefslogtreecommitdiffstats
path: root/src/emu/cpu.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu.h')
-rw-r--r--src/emu/cpu.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/emu/cpu.h b/src/emu/cpu.h
index 4867a8a..9294d7d 100644
--- a/src/emu/cpu.h
+++ b/src/emu/cpu.h
@@ -4,6 +4,8 @@
#include <stdint.h>
#include <stdbool.h>
+#include "opc.h"
+
/* cpu traps */
enum {
TRP_UNALIGNED,
@@ -33,6 +35,6 @@ extern bool N, Z;
extern uint32_t *GPR;
/* main cpu execution function */
-void execute(uint32_t IR);
+void execute(inst_t IR);
#endif