diff options
author | 2020-10-22 11:28:11 +1100 | |
---|---|---|
committer | 2020-10-22 11:28:11 +1100 | |
commit | 5a545f9d9a22872b9e755a0802b548d1c9de8dd4 (patch) | |
tree | dfef52a3e5596fa96caf2ba7c4278cbf350b92f3 | |
parent | 76537e3c5e9ff2288e52ab9191407aba1aaf5f1e (diff) |
gigatron: patched the cpu to stop crash at start.
-rw-r--r-- | src/devices/cpu/gigatron/gigatron.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/gigatron/gigatron.cpp b/src/devices/cpu/gigatron/gigatron.cpp index 5729a33633e..ea2862cda08 100644 --- a/src/devices/cpu/gigatron/gigatron.cpp +++ b/src/devices/cpu/gigatron/gigatron.cpp @@ -91,7 +91,7 @@ void gigatron_cpu_device::reset_cpu() m_out = 0; m_out_cb(0, 0); - m_outx_cb(0, 0); + //m_outx_cb(0, 0); // commented out because sound system isn't ready yet. for(uint16_t i = 0; i < m_ramMask; i++) gigatron_writemem8(i, floor(machine().rand() & 0xff)); |