(mess) m24: add obf bit to port 64 (nw)

This commit is contained in:
cracyc 2015-04-30 16:01:45 -05:00
parent 86455d8771
commit 15c72b0466

View File

@ -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;
}