mirror of
https://github.com/holub/mame
synced 2025-06-06 04:43:45 +03:00
sega/m3comm.cpp: fix black screen regression in srally2
This commit is contained in:
parent
a3eeb795a4
commit
442f7bfd79
@ -308,6 +308,10 @@ void m3comm_device::ioregs_w(offs_t offset, uint16_t data, uint16_t mem_mask)
|
||||
break;
|
||||
case 0x88 / 2:
|
||||
COMBINE_DATA(&m_status0);
|
||||
// HACK: workaround for srally2
|
||||
// writes here as handshake without touching the reset register,
|
||||
// expecting the comm CPU to actually be live for clearance.
|
||||
m_commcpu->set_input_line(INPUT_LINE_RESET, CLEAR_LINE);
|
||||
break;
|
||||
case 0x8A / 2:
|
||||
COMBINE_DATA(&m_status1);
|
||||
|
Loading…
Reference in New Issue
Block a user