summaryrefslogtreecommitdiff
path: root/m68k_to_x86.h
diff options
context:
space:
mode:
Diffstat (limited to 'm68k_to_x86.h')
-rw-r--r--m68k_to_x86.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/m68k_to_x86.h b/m68k_to_x86.h
new file mode 100644
index 0000000..c287d6f
--- /dev/null
+++ b/m68k_to_x86.h
@@ -0,0 +1,16 @@
+#include <stdint.h>
+
+typedef struct {
+ uint32_t flags;
+ int8_t dregs[8];
+ int8_t aregs[8];
+} x86_68k_options;
+
+typedef struct {
+ uint8_t flags[5];
+ uint8_t status;
+ uint16_t reserved;
+ uint32_t dregs[8];
+ uint32_t aregs[8];
+} m68k_context;
+