diff options
author | Michael Pavone <pavone@retrodev.com> | 2014-03-05 19:26:53 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2014-03-05 19:26:53 -0800 |
commit | a87c5969394dcf435da8a1165fbb1757af78fa0c (patch) | |
tree | c83dad7f65cb40688a2faedcb5f039c4e9f80a1c /m68k_internal.h | |
parent | b8b8b8416b1ee82bc69ca6792f578b8bfb8683b9 (diff) |
Combine implementations of lea and pea. Update bit instructions to use the op_ family of functions to simplify their implementation a bit.
Diffstat (limited to 'm68k_internal.h')
-rw-r--r-- | m68k_internal.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/m68k_internal.h b/m68k_internal.h index ddc2c16..4c97ad0 100644 --- a/m68k_internal.h +++ b/m68k_internal.h @@ -46,8 +46,7 @@ void m68k_handle_deferred(m68k_context * context); code_ptr get_native_address_trans(m68k_context * context, uint32_t address); //individual instructions -void translate_m68k_lea(m68k_options * opts, m68kinst * inst); -void translate_m68k_pea(m68k_options * opts, m68kinst * inst); +void translate_m68k_lea_pea(m68k_options * opts, m68kinst * inst); void translate_m68k_bsr(m68k_options * opts, m68kinst * inst); void translate_m68k_jmp_jsr(m68k_options * opts, m68kinst * inst); void translate_m68k_unlk(m68k_options * opts, m68kinst * inst); |