summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/netlist.h
diff options
context:
space:
mode:
author mooglyguy <therealmogminer@gmail.com>2018-12-22 17:06:23 +0100
committer mooglyguy <therealmogminer@gmail.com>2018-12-22 17:06:47 +0100
commitdc8834b8dca7f63288f3f512d7e8600356485808 (patch)
treecb81425c648108f02542ae493e91ec96ad3d2ac4 /src/devices/machine/netlist.h
parent1fd2f33b314b18237e80d8c6a9f70b580854802a (diff)
Last round of macro removals before the freeze. (nw)
-sound/discrete, okim6295: Removed MCFG macros. [Ryan Holtz] -norautp, osi, audio/mario: Removed MACHINE_CONFIG macros. [Ryan Holtz] -vsmile: Split into its own driver from vii.cpp. [Ryan Holtz] -vii: Fixed broken controller inputs. [Ryan Holtz] -konamim2: Massive update. Most games work, but are still marked non-working due to rare MAME crashes in the PPC DRC. [Phil Bennett, Ryan Holtz]
Diffstat (limited to 'src/devices/machine/netlist.h')
-rw-r--r--src/devices/machine/netlist.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/devices/machine/netlist.h b/src/devices/machine/netlist.h
index 1c00aeec8f5..51819e7f701 100644
--- a/src/devices/machine/netlist.h
+++ b/src/devices/machine/netlist.h
@@ -377,6 +377,12 @@ class netlist_mame_int_input_device : public device_t, public netlist_mame_sub_i
{
public:
// construction/destruction
+ netlist_mame_int_input_device(const machine_config &mconfig, const char *tag, device_t *owner, const char *param_name, const uint32_t mask,
+ const uint32_t shift)
+ : netlist_mame_int_input_device(mconfig, tag, owner, (uint32_t)0)
+ {
+ set_params(param_name, mask, shift);
+ }
netlist_mame_int_input_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0);
void set_params(const char *param_name, const uint32_t mask, const uint32_t shift);