summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author MooglyGuy <therealmogminer@gmail.com>2020-03-19 20:42:40 +0100
committer MooglyGuy <therealmogminer@gmail.com>2020-03-19 20:43:09 +0100
commit221c07ca7e5fb6c43a9c565f80ff40bf82aaaad9 (patch)
treed464eada1d258bd604c762a42f040d0aaa7a453b
parenta0a6637f7f550842f2d9091b94d79f70555d3ff5 (diff)
-unsp: Fixed F3 reset in jak_mk and probably others nw
-rw-r--r--src/devices/cpu/unsp/unsp.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/devices/cpu/unsp/unsp.cpp b/src/devices/cpu/unsp/unsp.cpp
index ac2f5f1bdaa..1c1460710e6 100644
--- a/src/devices/cpu/unsp/unsp.cpp
+++ b/src/devices/cpu/unsp/unsp.cpp
@@ -319,7 +319,15 @@ void unsp_device::device_reset()
m_core->m_enable_irq = 0;
m_core->m_enable_fiq = 0;
m_core->m_fir_move = 1;
+ m_core->m_sb = 0;
+ m_core->m_aq = 0;
+ m_core->m_fra = 0;
+ m_core->m_bnk = 0;
+ m_core->m_ine = 0;
m_core->m_pri = 8;
+ m_core->m_fiq = 0;
+ m_core->m_irq = 0;
+ m_core->m_sirq = 0;
}
void unsp_20_device::device_reset()