summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/netlist.h
diff options
context:
space:
mode:
author therealmogminer@gmail.com <therealmogminer@gmail.com>2016-12-13 19:23:13 +0100
committer therealmogminer@gmail.com <therealmogminer@gmail.com>2016-12-21 20:32:46 +0100
commitb64073e79564cda7072c7d9df7b8cad4013d1e71 (patch)
tree53732f2b16aa9554ec0c0ff3f6ad955b011c6894 /src/devices/machine/netlist.h
parent72f4f2a20ef91a32a076c680f0e78212408055a1 (diff)
More compile fixes (nw)'
Diffstat (limited to 'src/devices/machine/netlist.h')
-rw-r--r--src/devices/machine/netlist.h16
1 files changed, 4 insertions, 12 deletions
diff --git a/src/devices/machine/netlist.h b/src/devices/machine/netlist.h
index 540dc2a8697..28444e2d7e7 100644
--- a/src/devices/machine/netlist.h
+++ b/src/devices/machine/netlist.h
@@ -55,8 +55,6 @@
MCFG_DEVICE_ADD(_basetag ":cout" # _chan, NETLIST_STREAM_OUTPUT, 0) \
netlist_mame_stream_output_t::static_set_params(*device, _chan, _name);
-#define MCFG_NETLIST_ROM_ACCESS(
-
#define NETLIST_LOGIC_PORT_CHANGED(_base, _tag) \
PORT_CHANGED_MEMBER(_base ":" _tag, netlist_mame_logic_input_t, input_changed, 0)
@@ -417,22 +415,16 @@ private:
// ----------------------------------------------------------------------------------------
-// netlist_mame_rom_t
+// netlist_mame_int_input_t
// ----------------------------------------------------------------------------------------
-class netlist_mame_rom_t : public device_t,
- public netlist_mame_sub_interface
+class netlist_mame_int_input_t : public device_t,
+ public netlist_mame_sub_interface
{
public:
// construction/destruction
- netlist_mame_rom_t(const machine_config &mconfig, const char *tag, device_t *owner)
- : device_t(mconfig, NETLIST_ROM, "Netlist ROM Interface", tag, owner, 0, "netlist_rom", __FILE__),
- netlist_mame_sub_interface(*owner),
- m_in("")
- m_mask(0xffffffff),
- m_shift(0),
- { }
+ netlist_mame_int_input_t(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
virtual ~netlist_mame_int_input_t() { }
static void static_set_params(device_t &device, const char *param_name, const uint32_t mask, const uint32_t shift);