Merge pull request #99 from RealComboman/patch-4

output APB marquee flashing lights via led0 & led1
This commit is contained in:
Osso 2015-01-10 07:11:47 +01:00
commit 13fba5bd7a

View File

@ -354,6 +354,8 @@ READ8_MEMBER(atarisy2_state::switch_6502_r)
WRITE8_MEMBER(atarisy2_state::switch_6502_w)
{
set_led_status(machine(), 0, data & 0x04);
set_led_status(machine(), 1, data & 0x08);
if (m_has_tms5220)
{
data = 12 | ((data >> 5) & 1);