summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/audio/exidy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/audio/exidy.cpp')
-rw-r--r--src/mame/audio/exidy.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/audio/exidy.cpp b/src/mame/audio/exidy.cpp
index 15d2e28cf6c..99511cfe215 100644
--- a/src/mame/audio/exidy.cpp
+++ b/src/mame/audio/exidy.cpp
@@ -416,8 +416,8 @@ WRITE8_MEMBER(exidy_sh8253_sound_device::r6532_portb_w)
{
if (m_tms.found())
{
- m_tms->rsq_w(data & 0x01);
- m_tms->wsq_w((data >> 1) & 0x01);
+ m_tms->rsq_w(BIT(data, 0));
+ m_tms->wsq_w(BIT(data, 1));
}
}