diff options
author | 2019-11-08 23:52:14 +0100 | |
---|---|---|
committer | 2019-11-08 23:52:14 +0100 | |
commit | 88f702b416ba9eb930e6c1e932124d5f24b1a24c (patch) | |
tree | 955f3047b79156d7b2bbab55fcbd4fbc94661f1d /src/lib/netlist/nl_setup.cpp | |
parent | 731c4fe52073a7a7561bf04559e9f0b3b791388d (diff) |
netlist: code maintenance and bug fixes. (nw)
- comment style migration continues.
- Fixed a two bugs in the truthtable ignore inputs code
- refactored the truthtable code a bit for better readability.
- updated netlist specific gitignore.
Diffstat (limited to 'src/lib/netlist/nl_setup.cpp')
-rw-r--r-- | src/lib/netlist/nl_setup.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/netlist/nl_setup.cpp b/src/lib/netlist/nl_setup.cpp index 61672b5b73f..dff5606dc40 100644 --- a/src/lib/netlist/nl_setup.cpp +++ b/src/lib/netlist/nl_setup.cpp @@ -184,9 +184,9 @@ namespace netlist register_link(attach, frontier_name + ".Q"); } - void nlparse_t::tt_factory_create(tt_desc &desc, const pstring &sourcefile) + void nlparse_t::truthtable_create(tt_desc &desc, const pstring &sourcefile) { - auto fac = devices::tt_factory_create(desc, sourcefile); + auto fac = factory::truthtable_create(desc, sourcefile); m_factory.register_device(std::move(fac)); } |