From fd345a8336933105ea98c9d2d1cc5602ad611d70 Mon Sep 17 00:00:00 2001 From: Michael Pavone Date: Sun, 24 Apr 2016 00:22:38 -0700 Subject: Fix order of writes for move.l with a predec destination --- m68k_internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'm68k_internal.h') diff --git a/m68k_internal.h b/m68k_internal.h index a70da23..b74f06b 100644 --- a/m68k_internal.h +++ b/m68k_internal.h @@ -41,7 +41,7 @@ size_t reg_offset(m68k_op_info *op); void translate_m68k_op(m68kinst * inst, host_ea * ea, m68k_options * opts, uint8_t dst); void print_regs_exit(m68k_context * context); void m68k_read_size(m68k_options *opts, uint8_t size); -void m68k_write_size(m68k_options *opts, uint8_t size); +void m68k_write_size(m68k_options *opts, uint8_t size, uint8_t lowfirst); void m68k_save_result(m68kinst * inst, m68k_options * opts); void push_const(m68k_options *opts, int32_t value); void jump_m68k_abs(m68k_options * opts, uint32_t address); -- cgit v1.2.3