mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
Merge pull request #99 from RealComboman/patch-4
output APB marquee flashing lights via led0 & led1
This commit is contained in:
commit
13fba5bd7a
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user