summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Lord-Nightmare <Lord-Nightmare@users.noreply.github.com>2017-03-10 10:44:01 -0500
committer Lord-Nightmare <Lord-Nightmare@users.noreply.github.com>2017-03-10 10:44:01 -0500
commit1d35ea1a924923e802039a57e432cc6c12080f1b (patch)
tree24f6423e406d38aaf5524e1d249d774f51dc035d /src
parent1742a9fa4adc895227a8168e15bf60060b1c40b5 (diff)
fix mistake found by shattered (nw)
Diffstat (limited to 'src')
-rw-r--r--src/mame/drivers/notetaker.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/notetaker.cpp b/src/mame/drivers/notetaker.cpp
index 4c880181e6d..5a237a0df6a 100644
--- a/src/mame/drivers/notetaker.cpp
+++ b/src/mame/drivers/notetaker.cpp
@@ -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