summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/norautp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/norautp.cpp')
-rw-r--r--src/mame/drivers/norautp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/norautp.cpp b/src/mame/drivers/norautp.cpp
index 58ac1ba8862..f4e118814d6 100644
--- a/src/mame/drivers/norautp.cpp
+++ b/src/mame/drivers/norautp.cpp
@@ -676,8 +676,8 @@ WRITE8_MEMBER(norautp_state::soundlamps_w)
m_lamps[9] = BIT(data, 1); /* BET / COLLECT lamp */
/* the 4 MSB are for discrete sound */
- m_discrete->write(space, NORAUTP_SND_EN, (data >> 7) & 0x01);
- m_discrete->write(space, NORAUTP_FREQ_DATA, (data >> 4) & 0x07);
+ m_discrete->write(NORAUTP_SND_EN, (data >> 7) & 0x01);
+ m_discrete->write(NORAUTP_FREQ_DATA, (data >> 4) & 0x07);
// popmessage("sound bits 4-5-6-7: %02x, %02x, %02x, %02x", ((data >> 4) & 0x01), ((data >> 5) & 0x01), ((data >> 6) & 0x01), ((data >> 7) & 0x01));
}