diff options
author | 2014-04-16 00:42:59 +0000 | |
---|---|---|
committer | 2014-04-16 00:42:59 +0000 | |
commit | cd65549f38dc98857cf33e2ab48bdf61b2d820c4 (patch) | |
tree | 3bf631d8a4bd05837dfdcbaf06581441bc71c797 /src/emu/cpu/arm/arm.c | |
parent | 4b3da60e079e1b4223181dd3880e836c1206db2a (diff) |
Simplified Last Bronx fix, however it's confirmed to set dst address to 0, Ville?
Diffstat (limited to 'src/emu/cpu/arm/arm.c')
-rw-r--r-- | src/emu/cpu/arm/arm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/arm/arm.c b/src/emu/cpu/arm/arm.c index cb667fd65a1..1725994ecbf 100644 --- a/src/emu/cpu/arm/arm.c +++ b/src/emu/cpu/arm/arm.c @@ -1401,7 +1401,7 @@ void arm_cpu_device::HandleCoProVL86C020( UINT32 insn ) 0x00<<0 <- Revision number, 0 */ SetRegister(rn, 0x41560300); - debugger_break(machine()); + //debugger_break(machine()); } else SetRegister(rn, m_coproRegister[crn]); @@ -1413,7 +1413,7 @@ void arm_cpu_device::HandleCoProVL86C020( UINT32 insn ) if(crn != 0) m_coproRegister[crn]=GetRegister(rn); - printf("%08x: VL86C020 copro instruction write %08x %d %d\n", R15 & 0x3ffffff, insn,rn,crn); + //printf("%08x: VL86C020 copro instruction write %08x %d %d\n", R15 & 0x3ffffff, insn,rn,crn); } else { |