diff options
author | 2020-05-19 22:14:16 +0200 | |
---|---|---|
committer | 2020-05-20 07:59:46 +0200 | |
commit | e9a364dcc960736905bc602ccb47848a4d930945 (patch) | |
tree | 56783144c9c43a118e3e85dea737c97c459ff891 /src/lib/netlist/plib/pfunction.cpp | |
parent | 11af744ef3ed55003b54dec339b49f651c369965 (diff) |
netlist: Add tristate support for rom devices. [Couriersud]
Rom and prom devices now properly support tristate outputs. Native OC
output still on the todo list.
In addition this commit fixes a number of bugs around dealing with macro
level parameters and improves documentation by adding a parameter table.
Also srcclean.
Diffstat (limited to 'src/lib/netlist/plib/pfunction.cpp')
-rw-r--r-- | src/lib/netlist/plib/pfunction.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/lib/netlist/plib/pfunction.cpp b/src/lib/netlist/plib/pfunction.cpp index aa9524e1ee9..056d96d737e 100644 --- a/src/lib/netlist/plib/pfunction.cpp +++ b/src/lib/netlist/plib/pfunction.cpp @@ -275,9 +275,6 @@ namespace plib { postfix.push_back(opstk.top()); opstk.pop(); } - //printf("e : %s\n", expr.c_str()); - //for (auto &s : postfix) - // printf("x : %s\n", s.c_str()); compile_postfix(inputs, postfix, expr); } |