diff options
| author | 2019-12-22 03:12:27 +0100 | |
|---|---|---|
| committer | 2019-12-22 03:12:27 +0100 | |
| commit | 3db0e1a3d10ab150b695153f95a6bb3898b54cb9 (patch) | |
| tree | 28b7e3a425500228e772c1b9af111f9813bd931e | |
| parent | b8a5d8ec268df73dc38a9d084c73db916c840432 (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.cpp | 1 |
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) |
