mirror of
https://github.com/holub/mame
synced 2025-04-23 17:00:53 +03:00
Merge pull request #1280 from johnparker007/master
Maygay - fix input strobe order bug
This commit is contained in:
commit
4765620175
@ -635,7 +635,7 @@ WRITE8_MEMBER( maygay1b_state::lamp_data_w )
|
||||
|
||||
READ8_MEMBER( maygay1b_state::kbd_r )
|
||||
{
|
||||
return (m_kbd_ports[m_lamp_strobe&0x07])->read();
|
||||
return (m_kbd_ports[(m_lamp_strobe&0x07)^4])->read();
|
||||
}
|
||||
|
||||
WRITE8_MEMBER( maygay1b_state::scanlines_2_w )
|
||||
|
@ -41,7 +41,7 @@ public:
|
||||
m_duart68681(*this, "duart68681"),
|
||||
m_sw1_port(*this, "SW1"),
|
||||
m_sw2_port(*this, "SW2"),
|
||||
m_kbd_ports(*this, {"SW1", "STROBE2", "STROBE3", "STROBE4", "STROBE5", "STROBE6", "STROBE7", "SW2"}),
|
||||
m_kbd_ports(*this, { "SW1", "SW2", "STROBE2", "STROBE3", "STROBE4", "STROBE5", "STROBE6", "STROBE7", }),
|
||||
m_bank1(*this, "bank1"),
|
||||
m_reel0(*this, "reel0"),
|
||||
m_reel1(*this, "reel1"),
|
||||
|
Loading…
Reference in New Issue
Block a user