summaryrefslogtreecommitdiff
path: root/m68k_core.h
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2014-03-02 16:34:29 -0800
committerMichael Pavone <pavone@retrodev.com>2014-03-02 16:34:29 -0800
commit48d6afdd1c9aaafc5b8ce59c584e360d89571a5b (patch)
tree2974a8819a2c80d7fc0ebc2e71b9a8e1370863fe /m68k_core.h
parent8664df5a5d2870c67036666b66ce0d2f9fcdd1eb (diff)
Initial stab at separating the generic parts of the 68K core from the host-cpu specific parts.
Diffstat (limited to 'm68k_core.h')
-rw-r--r--m68k_core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/m68k_core.h b/m68k_core.h
index 224312f..370aa1e 100644
--- a/m68k_core.h
+++ b/m68k_core.h
@@ -67,7 +67,7 @@ typedef struct {
void translate_m68k(m68k_options * opts, struct m68kinst * inst);
void translate_m68k_stream(uint32_t address, m68k_context * context);
void start_68k_context(m68k_context * context, uint32_t address);
-void init_x86_68k_opts(m68k_options * opts, memmap_chunk * memmap, uint32_t num_chunks);
+void init_m68k_opts(m68k_options * opts, memmap_chunk * memmap, uint32_t num_chunks);
void init_68k_context(m68k_context * context, native_map_slot * native_code_map, void * opts);
void m68k_reset(m68k_context * context);
void insert_breakpoint(m68k_context * context, uint32_t address, uint8_t * bp_handler);