diff m68k_internal.h @ 979:771875b5f519

Fix order of writes for move.l with a predec destination
author Michael Pavone <pavone@retrodev.com>
date Sun, 24 Apr 2016 00:22:38 -0700
parents 4556818b6847
children 902c53d9c16f
line wrap: on
line diff
--- a/m68k_internal.h	Sat Apr 23 18:14:01 2016 -0700
+++ b/m68k_internal.h	Sun Apr 24 00:22:38 2016 -0700
@@ -41,7 +41,7 @@
 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);