remove breakpoint checks (to be added back later)

This commit is contained in:
Kelvin Sherlock 2019-01-22 21:52:00 -05:00
parent 77eb25fc71
commit ee078aeb19
1 changed files with 2 additions and 7 deletions

View File

@ -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;