summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author couriersud <couriersud@gmx.org>2020-01-16 22:43:59 +0100
committer couriersud <couriersud@gmx.org>2020-01-16 22:43:59 +0100
commiteb92f5900c1eee1a95131790f40ab2f839e53ffe (patch)
treee3847a1c2fd02c2a433df28b9e8c5364f3755379
parent09f03c4b057ce843fd417dc3a4c6d2c1b3676041 (diff)
netlist: 7493, minor edit. (nw)
-rw-r--r--src/lib/netlist/devices/nld_7493.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/netlist/devices/nld_7493.cpp b/src/lib/netlist/devices/nld_7493.cpp
index 855bd8a3770..48c2b179073 100644
--- a/src/lib/netlist/devices/nld_7493.cpp
+++ b/src/lib/netlist/devices/nld_7493.cpp
@@ -131,7 +131,7 @@ namespace netlist
NETLIB_HANDLERI(updB)
{
- auto cnt = (++m_bcd &= 0x07);
+ const auto cnt(++m_bcd &= 0x07);
m_QD.push((cnt >> 2) & 1, out_delay3);
m_QC.push((cnt >> 1) & 1, out_delay2);
m_QB.push(cnt & 1, out_delay);