summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author MooglyGuy <therealmogminer@gmail.com>2019-12-22 03:12:27 +0100
committer MooglyGuy <therealmogminer@gmail.com>2019-12-22 03:12:27 +0100
commit3db0e1a3d10ab150b695153f95a6bb3898b54cb9 (patch)
tree28b7e3a425500228e772c1b9af111f9813bd931e
parentb8a5d8ec268df73dc38a9d084c73db916c840432 (diff)
-spg2xx: Initialize FIQ vector to an invalid state so games which don't initialize it don't hang, nw
-rw-r--r--src/devices/machine/spg2xx.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/devices/machine/spg2xx.cpp b/src/devices/machine/spg2xx.cpp
index 2f77789df22..bfb8e1a2cf5 100644
--- a/src/devices/machine/spg2xx.cpp
+++ b/src/devices/machine/spg2xx.cpp
@@ -92,6 +92,7 @@ void spg2xx_device::device_start()
void spg2xx_device::device_reset()
{
unsp_device::device_reset();
+ m_fiq_vector = 0xff;
}
WRITE8_MEMBER(spg2xx_device::fiq_vector_w)