summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/rtc9701.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/rtc9701.cpp')
-rw-r--r--src/devices/machine/rtc9701.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/rtc9701.cpp b/src/devices/machine/rtc9701.cpp
index f224f9c8f87..a8ccc5cec7f 100644
--- a/src/devices/machine/rtc9701.cpp
+++ b/src/devices/machine/rtc9701.cpp
@@ -377,7 +377,7 @@ WRITE_LINE_MEMBER( rtc9701_device::set_clock_line )
if (cmd_stream_pos>4)
{
rtc9701_data_pos++;
- rtc9701_current_data = (rtc9701_current_data << 1) | (m_latch&1);;
+ rtc9701_current_data = (rtc9701_current_data << 1) | (m_latch&1);
}
if (cmd_stream_pos==12)
@@ -438,7 +438,7 @@ WRITE_LINE_MEMBER( rtc9701_device::set_clock_line )
if (cmd_stream_pos>12)
{
rtc9701_data_pos++;
- rtc9701_current_data = (rtc9701_current_data << 1) | (m_latch&1);;
+ rtc9701_current_data = (rtc9701_current_data << 1) | (m_latch&1);
}
if (cmd_stream_pos==28)