summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/netlist/devices/nlid_system.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/netlist/devices/nlid_system.h')
-rw-r--r--src/lib/netlist/devices/nlid_system.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/netlist/devices/nlid_system.h b/src/lib/netlist/devices/nlid_system.h
index 12a8288b99e..fb5403ed909 100644
--- a/src/lib/netlist/devices/nlid_system.h
+++ b/src/lib/netlist/devices/nlid_system.h
@@ -128,7 +128,7 @@ namespace devices
, m_funcparam({nlconst::zero()})
{
if (m_func() != "")
- m_compiled.compile(std::vector<pstring>({{pstring("T")}}), m_func());
+ m_compiled.compile(m_func(), std::vector<pstring>({{pstring("T")}}));
connect(m_feedback, m_Q);
}
//NETLIB_RESETI();
@@ -370,7 +370,7 @@ namespace devices
inps.push_back(n);
m_vals.push_back(nlconst::zero());
}
- m_compiled.compile(inps, m_func());
+ m_compiled.compile(m_func(), inps);
}
protected: