diff options
author | Michael Pavone <pavone@retrodev.com> | 2014-02-24 00:39:02 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2014-02-24 00:39:02 -0800 |
commit | 116af62e26522908dca8e3eaa4736e70ef7c636c (patch) | |
tree | aca222c51982dc144465190c5f9926e25556191a /m68k_to_x86.c | |
parent | 3bd0223c1d99e76292db756c454c77e29eb4f7dc (diff) |
Start work on refactoring some of the backend code to allow more sharing between M68K and Z80 cores and possibly also between x86 and the ARM backend when it exists
Diffstat (limited to 'm68k_to_x86.c')
-rw-r--r-- | m68k_to_x86.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/m68k_to_x86.c b/m68k_to_x86.c index b897540..c0a0034 100644 --- a/m68k_to_x86.c +++ b/m68k_to_x86.c @@ -4345,13 +4345,6 @@ void m68k_reset(m68k_context * context) start_68k_context(context, address); } -typedef enum { - READ_16, - READ_8, - WRITE_16, - WRITE_8 -} ftype; - uint8_t * gen_mem_fun(x86_68k_options * opts, memmap_chunk * memmap, uint32_t num_chunks, ftype fun_type) { uint8_t * dst = opts->cur_code; |