summaryrefslogtreecommitdiff
path: root/m68k_to_x86.c
diff options
context:
space:
mode:
authorMike Pavone <pavone@retrodev.com>2013-04-16 09:31:21 -0700
committerMike Pavone <pavone@retrodev.com>2013-04-16 09:31:21 -0700
commit6d83bfe89548daa312e40efda6c1200993d24523 (patch)
treefc1b454f7beda74f18d49776ad3bf17c2e18f555 /m68k_to_x86.c
parente73320f72e5d2a10714672bdbc59e87849100585 (diff)
Small bit of cleanup
Diffstat (limited to 'm68k_to_x86.c')
-rw-r--r--m68k_to_x86.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/m68k_to_x86.c b/m68k_to_x86.c
index ab87751..cb29a83 100644
--- a/m68k_to_x86.c
+++ b/m68k_to_x86.c
@@ -2,6 +2,7 @@
#include "m68k_to_x86.h"
#include "68kinst.h"
#include "mem.h"
+#include "x86_backend.h"
#include <stdio.h>
#include <stddef.h>
#include <stdlib.h>
@@ -20,14 +21,6 @@
#define FLAG_Z RDX
#define FLAG_C DH
-typedef struct {
- int32_t disp;
- uint8_t mode;
- uint8_t base;
- uint8_t index;
- uint8_t cycles;
-} x86_ea;
-
char disasm_buf[1024];
void handle_cycle_limit_int();