summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/netlist/devices/nld_8277.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/netlist/devices/nld_8277.cpp')
-rw-r--r--src/lib/netlist/devices/nld_8277.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/netlist/devices/nld_8277.cpp b/src/lib/netlist/devices/nld_8277.cpp
index 424155656f1..c1c59e360fd 100644
--- a/src/lib/netlist/devices/nld_8277.cpp
+++ b/src/lib/netlist/devices/nld_8277.cpp
@@ -114,8 +114,8 @@ namespace netlist::devices {
{
if (!m_RESET())
{
- m_A.reset_shifter();
- m_B.reset_shifter();
+ m_A().reset_shifter();
+ m_B().reset_shifter();
}
}
@@ -123,8 +123,8 @@ namespace netlist::devices {
{
if (!m_last_CLK && m_CLK())
{
- m_A.shift();
- m_B.shift();
+ m_A().shift();
+ m_B().shift();
}
m_last_CLK = m_CLK();
m_last_CLKA = m_CLKA();
@@ -135,7 +135,7 @@ namespace netlist::devices {
{
if (!m_last_CLKA && m_CLKA())
{
- m_A.shift();
+ m_A().shift();
}
m_last_CLKA = m_CLKA();
}
@@ -144,7 +144,7 @@ namespace netlist::devices {
{
if (!m_last_CLKB && m_CLKB())
{
- m_B.shift();
+ m_B().shift();
}
m_last_CLKB = m_CLKB();
}