diff options
author | Michael Pavone <pavone@retrodev.com> | 2014-12-26 15:45:31 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2014-12-26 15:45:31 -0800 |
commit | e8a9c14ec2e0b75eb1aef1c2a77936c6f7fd8326 (patch) | |
tree | 106ed1da8b71cd970067d673dddb30dc0281c001 /m68k_core_x86.c | |
parent | 8ab499c765335f363aa39c3a7e1c56ba0b5fb9eb (diff) |
Fix a few bugs introduced in the Z80 core from the adjustments to fit with the code gen refactor
Diffstat (limited to 'm68k_core_x86.c')
-rw-r--r-- | m68k_core_x86.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/m68k_core_x86.c b/m68k_core_x86.c index 0f89a82..96e1cfa 100644 --- a/m68k_core_x86.c +++ b/m68k_core_x86.c @@ -2061,11 +2061,6 @@ void translate_out_of_bounds(code_info *code) call(code, (code_ptr)exit); } -void check_code_prologue(code_info *code) -{ - check_alloc_code(code, MAX_INST_LEN*4); -}; - void nop_fill_or_jmp_next(code_info *code, code_ptr old_end, code_ptr next_inst) { if (next_inst == old_end && next_inst - code->cur < 2) { |