mirror of
https://github.com/holub/mame
synced 2025-04-23 17:00:53 +03:00
(mess) m24: add obf bit to port 64 (nw)
This commit is contained in:
parent
86455d8771
commit
15c72b0466
@ -68,7 +68,7 @@ READ8_MEMBER(m24_state::keyboard_r)
|
||||
case 2:
|
||||
return 0;
|
||||
case 4:
|
||||
return m_kbcibf ? 2 : 0;
|
||||
return (m_kbcibf ? 2 : 0) | ((m_pa & 0x40) ? 0 : 1);
|
||||
}
|
||||
return 0xff;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user