mirror of
https://github.com/holub/mame
synced 2025-04-24 01:11:11 +03:00
fix mistake found by shattered (nw)
This commit is contained in:
parent
1742a9fa4a
commit
1d35ea1a92
@ -285,7 +285,7 @@ WRITE16_MEMBER(notetaker_state::IPConReg_w)
|
||||
/* * Keyboard hd6402 */
|
||||
READ16_MEMBER( notetaker_state::ReadKeyData_r )
|
||||
{
|
||||
return 0xFF00||m_kbduart->get_received_data();
|
||||
return 0xFF00|m_kbduart->get_received_data();
|
||||
}
|
||||
|
||||
READ16_MEMBER( notetaker_state::ReadOPStatus_r ) // 74ls368 hex inverter at #l7 provides 4 bits, inverted
|
||||
@ -425,7 +425,7 @@ WRITE16_MEMBER( notetaker_state::LoadDispAddr_w )
|
||||
/* EIA hd6402 */
|
||||
READ16_MEMBER( notetaker_state::ReadEIAData_r )
|
||||
{
|
||||
return 0xFF00||m_eiauart->get_received_data();
|
||||
return 0xFF00|m_eiauart->get_received_data();
|
||||
}
|
||||
|
||||
READ16_MEMBER( notetaker_state::ReadEIAStatus_r ) // 74ls368 hex inverter at #f1 provides 2 bits, inverted
|
||||
|
Loading…
Reference in New Issue
Block a user