diff options
author | 2019-02-16 14:31:59 +0100 | |
---|---|---|
committer | 2019-02-16 14:31:59 +0100 | |
commit | 55000018e7700cbbc2bd7f977cf0eec57f39b64b (patch) | |
tree | 242e96b202ba6e6f7ce632147ebd1709ff1b9f1c /src/lib/netlist/nl_base.cpp | |
parent | 7624f7490fc29d6205e0f10cd70ad8b4297ba3b8 (diff) |
netlist: Separation of duties. (nw)
Make it clearer what is used during parsing a netlist, "compiling" a
netlist and execution of a netlist.
Diffstat (limited to 'src/lib/netlist/nl_base.cpp')
-rw-r--r-- | src/lib/netlist/nl_base.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/netlist/nl_base.cpp b/src/lib/netlist/nl_base.cpp index f78731e883f..d032ad45b02 100644 --- a/src/lib/netlist/nl_base.cpp +++ b/src/lib/netlist/nl_base.cpp @@ -954,7 +954,7 @@ logic_input_t::logic_input_t(core_device_t &dev, const pstring &aname, param_t::param_t(device_t &device, const pstring &name) : device_object_t(device, device.name() + "." + name) { - device.setup().register_param(this->name(), *this); + device.setup().register_param_t(this->name(), *this); } param_t::param_type_t param_t::param_type() const |