summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/netlist/devices/nlid_system.h
diff options
context:
space:
mode:
author couriersud <couriersud@gmx.org>2017-01-10 23:08:57 +0100
committer couriersud <couriersud@gmx.org>2017-01-12 23:20:22 +0100
commitc8c7e9a770a525a63a0f40bccdf0489966cfdc25 (patch)
tree046e3fcacc78d68483f56d3e4850fea79f55235d /src/lib/netlist/devices/nlid_system.h
parent5b4026d13fd1f619617ba8ce94628406416019fd (diff)
Fix timing issue in CD4538. Add "pow" (power) to the function model.
Minor documentation updates. Slight improvement of gorilla sound. (nw)
Diffstat (limited to 'src/lib/netlist/devices/nlid_system.h')
-rw-r--r--src/lib/netlist/devices/nlid_system.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/netlist/devices/nlid_system.h b/src/lib/netlist/devices/nlid_system.h
index 5850eadfd9d..929394651d8 100644
--- a/src/lib/netlist/devices/nlid_system.h
+++ b/src/lib/netlist/devices/nlid_system.h
@@ -327,6 +327,8 @@ namespace netlist
rc.m_cmd = MULT;
else if (cmd == "/")
rc.m_cmd = DIV;
+ else if (cmd == "pow")
+ rc.m_cmd = POW;
else if (cmd.startsWith("A"))
{
rc.m_cmd = PUSH_INPUT;
@@ -359,6 +361,7 @@ namespace netlist
MULT,
SUB,
DIV,
+ POW,
PUSH_CONST,
PUSH_INPUT
};