diff options
author | 2018-12-17 01:30:26 +0100 | |
---|---|---|
committer | 2018-12-17 01:30:26 +0100 | |
commit | 7e4070f563b5b60842ddd3080df4fb59487e2af8 (patch) | |
tree | baf41095fc80722a434dbdbf54698e7241fefe15 /src/devices/machine/netlist.h | |
parent | b844b7281d7a78aac022e2100693be7a4eedf798 (diff) |
-bus/gameboy/gb_slot, ieee488/hp9895, psx/gamebooster, snes/sgb: Removed MCFG and MACHINE_CONFIG macros. [Ryan Holtz]
-cpu/jaguar, lh5801, lr35902, z80: Removed MCFG macros. [Ryan Holtz]
-video/sed1520: Removed MCFG macros. [Ryan Holtz]
-drivers/gb, jaguar, monty, osborne1, pc1500, pc2000, popeye: Removed MACHINE_CONFIG macros. [Ryan Holtz]
Diffstat (limited to 'src/devices/machine/netlist.h')
-rw-r--r-- | src/devices/machine/netlist.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/devices/machine/netlist.h b/src/devices/machine/netlist.h index 828e2497af6..46d7fbef7b5 100644 --- a/src/devices/machine/netlist.h +++ b/src/devices/machine/netlist.h @@ -468,6 +468,11 @@ class netlist_mame_stream_input_device : public device_t, public netlist_mame_su { public: // construction/destruction + netlist_mame_stream_input_device(const machine_config &mconfig, const char *tag, device_t *owner, int channel, const char *param_name) + : netlist_mame_stream_input_device(mconfig, tag, owner, (uint32_t)0) + { + set_params(channel, param_name); + } netlist_mame_stream_input_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0); void set_params(int channel, const char *param_name); @@ -489,6 +494,11 @@ class netlist_mame_stream_output_device : public device_t, public netlist_mame_s { public: // construction/destruction + netlist_mame_stream_output_device(const machine_config &mconfig, const char *tag, device_t *owner, int channel, const char *out_name) + : netlist_mame_stream_output_device(mconfig, tag, owner, (uint32_t)0) + { + set_params(channel, out_name); + } netlist_mame_stream_output_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0); void set_params(int channel, const char *out_name); |