comparison m68k_core.h @ 985:751280fb4494

Fix interrupt latency from STOP instruction status reg changes. Fix modified code patching when non-standard aliases are used. This fixes the demo MDEM's First
author Michael Pavone <pavone@retrodev.com>
date Sun, 24 Apr 2016 21:23:28 -0700
parents 902c53d9c16f
children 1f09994e92c5
comparison
equal deleted inserted replaced
984:bd4d698d995b 985:751280fb4494
77 void m68k_reset(m68k_context * context); 77 void m68k_reset(m68k_context * context);
78 void m68k_options_free(m68k_options *opts); 78 void m68k_options_free(m68k_options *opts);
79 void insert_breakpoint(m68k_context * context, uint32_t address, uint8_t * bp_handler); 79 void insert_breakpoint(m68k_context * context, uint32_t address, uint8_t * bp_handler);
80 void remove_breakpoint(m68k_context * context, uint32_t address); 80 void remove_breakpoint(m68k_context * context, uint32_t address);
81 m68k_context * m68k_handle_code_write(uint32_t address, m68k_context * context); 81 m68k_context * m68k_handle_code_write(uint32_t address, m68k_context * context);
82 uint32_t get_instruction_start(native_map_slot * native_code_map, uint32_t address); 82 uint32_t get_instruction_start(m68k_options *opts, native_map_slot * native_code_map, uint32_t address);
83 83
84 #endif //M68K_CORE_H_ 84 #endif //M68K_CORE_H_
85 85