More compile fixes (nw)'

This commit is contained in:
therealmogminer@gmail.com 2016-12-13 19:23:13 +01:00
parent 72f4f2a20e
commit b64073e795

View File

@ -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);