From 5a545f9d9a22872b9e755a0802b548d1c9de8dd4 Mon Sep 17 00:00:00 2001 From: Robbbert Date: Thu, 22 Oct 2020 11:28:11 +1100 Subject: [PATCH] gigatron: patched the cpu to stop crash at start. --- src/devices/cpu/gigatron/gigatron.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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));