Disable I/O port debug checking on 486+.

This commit is contained in:
OBattler
2024-01-14 21:49:30 +01:00
parent f2971a132f
commit 00e38ed0bc

View File

@@ -287,6 +287,10 @@ io_debug_check_addr(uint16_t addr)
int i = 0;
int set_trap = 0;
/* Do nothing on 486+. */
if (is486)
return;
if (!(dr[7] & 0xFF))
return;