From fb7ca09b019248b9a0aba481ea55386f71053d73 Mon Sep 17 00:00:00 2001 From: David Guillen Fandos Date: Wed, 17 Mar 2021 18:33:02 +0100 Subject: Remove BIOS reserved translation area This is not really necessary since it can share area with ROM. Performance impact should be very minimal (haven't noticed it myself) and could be compensated (even by a positive offset) if we bump the ROM cache area size. Tested with several dynarecs. --- cpu.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'cpu.c') diff --git a/cpu.c b/cpu.c index 88db1e9..2c93f38 100644 --- a/cpu.c +++ b/cpu.c @@ -1639,8 +1639,6 @@ void raise_interrupt(irq_type irq_raised) reg[REG_CPSR] = 0xD2; reg[REG_PC] = 0x00000018; - bios_region_read_allow(); - set_cpu_mode(MODE_IRQ); reg[CPU_HALT_STATE] = CPU_ACTIVE; reg[CHANGED_PC_STATUS] = 1; -- cgit v1.2.3