mirror of
https://github.com/digarok/gsplus.git
synced 2025-02-17 11:31:11 +00:00
remove breakpoint checks (to be added back later)
This commit is contained in:
parent
77eb25fc71
commit
ee078aeb19
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user