summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/netlist/nl_parser.cpp
diff options
context:
space:
mode:
author couriersud <couriersud@gmx.org>2020-09-12 23:52:07 +0200
committer couriersud <couriersud@gmx.org>2020-09-12 23:52:20 +0200
commit672633836275d4010f30f8edda97e71e956aa95f (patch)
treea990d82f8bf01d964590b9c02c2f9e51bf55439f /src/lib/netlist/nl_parser.cpp
parentfcd09ebdc606f197d14e8f32c3eceef442f45777 (diff)
netlist: Move selected NET_MODELS into the core
Diffstat (limited to 'src/lib/netlist/nl_parser.cpp')
-rw-r--r--src/lib/netlist/nl_parser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/netlist/nl_parser.cpp b/src/lib/netlist/nl_parser.cpp
index d5823d2e930..32a5c542a16 100644
--- a/src/lib/netlist/nl_parser.cpp
+++ b/src/lib/netlist/nl_parser.cpp
@@ -120,7 +120,7 @@ bool parser_t::parse(const token_store &tokstor, const pstring &nlname)
if (token.is(m_tok_NETLIST_START) && (name.str() == nlname || nlname.empty()))
{
require_token(m_tok_paren_right);
- parse_netlist(name.str());
+ parse_netlist();
return true;
}
if (token.is(m_tok_TRUTHTABLE_START) && name.str() == nlname)
@@ -165,7 +165,7 @@ bool parser_t::parse(const token_store &tokstor, const pstring &nlname)
}
}
-void parser_t::parse_netlist(const pstring &nlname)
+void parser_t::parse_netlist()
{
while (true)
{