From ee078aeb191ff5854296634d0568af923c13b79c Mon Sep 17 00:00:00 2001 From: Kelvin Sherlock Date: Tue, 22 Jan 2019 21:52:00 -0500 Subject: [PATCH] remove breakpoint checks (to be added back later) --- src/engine_c.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/engine_c.c b/src/engine_c.c index 88fc614..409ac77 100644 --- a/src/engine_c.c +++ b/src/engine_c.c @@ -372,9 +372,6 @@ word32 get_memory8_io_stub(word32 addr, byte *stat, double *fcycs_ptr, byte *ptr; wstat = PTR2WORD(stat) & 0xff; - if(wstat & BANK_BREAK) { - check_breakpoints(addr); - } fcycles = *fcycs_ptr; if(wstat & BANK_IO2_TMP || iostrobe == 1) { FCYCLES_ROUND; @@ -449,10 +446,8 @@ void set_memory8_io_stub(word32 addr, word32 val, byte *stat, double *fcycs_ptr, word32 wstat; wstat = PTR2WORD(stat) & 0xff; - if(wstat & (1 << (31 - BANK_BREAK_BIT))) { - check_breakpoints(addr); - } - ptr = stat - wstat + ((addr) & 0xff); \ + + ptr = stat - wstat + ((addr) & 0xff); fcycles = *fcycs_ptr; if(wstat & BANK_IO2_TMP) { FCYCLES_ROUND;