Remove device_config_complete from numerous devices that don't really need it (nw)

This commit is contained in:
AJR 2017-02-09 22:49:40 -05:00
parent 30fcbaae7a
commit dddf09d26c
129 changed files with 19 additions and 787 deletions

View File

@ -69,22 +69,20 @@ static ADDRESS_MAP_START( tms32051_internal_data, AS_DATA, 16, tms32051_device )
ADDRESS_MAP_END
tms32051_device::tms32051_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: cpu_device(mconfig, TMS32051, "TMS32051", tag, owner, clock, "tms32051", __FILE__)
, m_program_config("program", ENDIANNESS_LITTLE, 16, 16, -1, ADDRESS_MAP_NAME(tms32051_internal_pgm))
, m_data_config("data", ENDIANNESS_LITTLE, 16, 16, -1, ADDRESS_MAP_NAME(tms32051_internal_data))
, m_io_config("io", ENDIANNESS_LITTLE, 16, 16, -1)
{
}
tms32051_device::tms32051_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, uint32_t clock, const char* shortname, const char* source)
tms32051_device::tms32051_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, uint32_t clock, const char *shortname, const char *source, address_map_constructor internal_pgm, address_map_constructor internal_data)
: cpu_device(mconfig, type, name, tag, owner, clock, shortname, source)
, m_program_config("program", ENDIANNESS_LITTLE, 16, 16, -1)
, m_data_config("data", ENDIANNESS_LITTLE, 16, 16, -1)
, m_program_config("program", ENDIANNESS_LITTLE, 16, 16, -1, internal_pgm)
, m_data_config("data", ENDIANNESS_LITTLE, 16, 16, -1, internal_data)
, m_io_config("io", ENDIANNESS_LITTLE, 16, 16, -1)
{
}
tms32051_device::tms32051_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: tms32051_device(mconfig, TMS32051, "TMS32051", tag, owner, clock, "tms32051", __FILE__,
ADDRESS_MAP_NAME(tms32051_internal_pgm),
ADDRESS_MAP_NAME(tms32051_internal_data))
{
}
/**************************************************************************
@ -107,7 +105,9 @@ ADDRESS_MAP_END
tms32053_device::tms32053_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: tms32051_device(mconfig, TMS32053, "TMS32053", tag, owner, clock, "tms32053", __FILE__)
: tms32051_device(mconfig, TMS32053, "TMS32053", tag, owner, clock, "tms32053", __FILE__,
ADDRESS_MAP_NAME(tms32053_internal_pgm),
ADDRESS_MAP_NAME(tms32053_internal_data))
{
}
@ -658,9 +658,3 @@ void tms32053_device::device_reset()
CHANGE_PC(0);
}
void tms32053_device::device_config_complete()
{
m_program_config = address_space_config("program", ENDIANNESS_LITTLE, 16, 16, -1, ADDRESS_MAP_NAME(tms32053_internal_pgm));
m_data_config = address_space_config("data", ENDIANNESS_LITTLE, 16, 16, -1, ADDRESS_MAP_NAME(tms32053_internal_data));
}

View File

@ -58,7 +58,7 @@ class tms32051_device : public cpu_device
public:
// construction/destruction
tms32051_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
tms32051_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, uint32_t clock, const char *shortname, const char *source);
tms32051_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, uint32_t clock, const char *shortname, const char *source, address_map_constructor internal_pgm, address_map_constructor internal_data);
DECLARE_READ16_MEMBER( cpuregs_r );
DECLARE_WRITE16_MEMBER( cpuregs_w );
@ -375,7 +375,6 @@ public:
tms32053_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
protected:
virtual void device_config_complete() override;
virtual void device_reset() override;
};

View File

@ -43,6 +43,7 @@ at28c16_device::at28c16_device( const machine_config &mconfig, const char *tag,
: device_t(mconfig, AT28C16, "AT28C16", tag, owner, clock, "at28c16", __FILE__),
device_memory_interface(mconfig, *this),
device_nvram_interface(mconfig, *this),
m_space_config("at28c16", ENDIANNESS_BIG, 8, 12, 0, *ADDRESS_MAP_NAME( at28c16_map8 )),
m_a9_12v( 0 ),
m_oe_12v( 0 ),
m_last_write( -1 ),
@ -51,28 +52,6 @@ at28c16_device::at28c16_device( const machine_config &mconfig, const char *tag,
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void at28c16_device::device_config_complete()
{
m_space_config = address_space_config( "at28c16", ENDIANNESS_BIG, 8, 12, 0, *ADDRESS_MAP_NAME( at28c16_map8 ) );
}
//-------------------------------------------------
// device_validity_check - perform validity checks
// on this device
//-------------------------------------------------
void at28c16_device::device_validity_check(validity_checker &valid) const
{
}
//-------------------------------------------------
// memory_space_config - return a description of
// any address spaces owned by this device
@ -98,15 +77,6 @@ void at28c16_device::device_start()
}
//-------------------------------------------------
// device_reset - device-specific reset
//-------------------------------------------------
void at28c16_device::device_reset()
{
}
//-------------------------------------------------
// nvram_default - called to initialize NVRAM to
// its default state

View File

@ -45,10 +45,7 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_validity_check(validity_checker &valid) const override;
virtual void device_start() override;
virtual void device_reset() override;
virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override;
// device_memory_interface overrides

View File

@ -32,16 +32,6 @@ ds1315_device::ds1315_device(const machine_config &mconfig, const char *tag, dev
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void ds1315_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------

View File

@ -44,7 +44,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_reset() override;

View File

@ -22,16 +22,6 @@ mb14241_device::mb14241_device(const machine_config &mconfig, const char *tag, d
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void mb14241_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------

View File

@ -21,7 +21,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_reset() override;

View File

@ -836,16 +836,6 @@ mcf5206e_peripheral_device::mcf5206e_peripheral_device(const machine_config &mco
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void mcf5206e_peripheral_device::device_config_complete()
{
}
const address_space_config *mcf5206e_peripheral_device::memory_space_config(address_spacenum spacenum) const
{
return (spacenum == AS_0) ? &m_space_config : nullptr;

View File

@ -163,7 +163,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_reset() override;
virtual void device_post_load() override { }

View File

@ -73,10 +73,6 @@ void pci9050_device::device_start()
m_user_output_handler.resolve();
}
void pci9050_device::device_config_complete()
{
}
void pci9050_device::device_reset()
{
pci_device::device_reset();

View File

@ -58,7 +58,6 @@ public:
protected:
virtual void device_start() override;
virtual void device_config_complete() override;
virtual void device_reset() override;
private:

View File

@ -39,16 +39,6 @@ rp5h01_device::rp5h01_device(const machine_config &mconfig, const char *tag, dev
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void rp5h01_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------

View File

@ -49,7 +49,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_reset() override;

View File

@ -201,16 +201,6 @@ void strataflash_device::device_start(void)
m_prot_regs[i] = machine().rand();
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void strataflash_device::device_config_complete()
{
}
/*
read a 8/16-bit word from FEEPROM
*/

View File

@ -19,8 +19,6 @@ public:
protected:
// device-level overrides
void device_config_complete() override;
void device_start() override;
void nvram_default() override;

View File

@ -183,17 +183,6 @@ void tc0091lvc_device::static_set_gfxdecode_tag(device_t &device, const char *ta
}
void tc0091lvc_device::device_config_complete()
{
// int address_bits = 20;
// m_space_config = address_space_config("janshi_vdp", ENDIANNESS_LITTLE, 8, address_bits, 0, *ADDRESS_MAP_NAME(tc0091lvc_map8));
}
void tc0091lvc_device::device_validity_check(validity_checker &valid) const
{
}
TILE_GET_INFO_MEMBER(tc0091lvc_device::get_bg0_tile_info)
{
int attr = m_vram0[2 * tile_index + 1];
@ -289,10 +278,6 @@ void tc0091lvc_device::device_start()
m_gfxdecode->set_gfx(m_gfx_index, std::make_unique<gfx_element>(palette, char_layout, (uint8_t *)m_pcg_ram, 0, palette.entries() / 16, 0));
}
void tc0091lvc_device::device_reset()
{
}
const address_space_config *tc0091lvc_device::memory_space_config(address_spacenum spacenum) const
{
return (spacenum == 0) ? &m_space_config : nullptr;

View File

@ -72,10 +72,7 @@ public:
void screen_eof(void);
protected:
virtual void device_config_complete() override;
virtual void device_validity_check(validity_checker &valid) const override;
virtual void device_start() override;
virtual void device_reset() override;
virtual const address_space_config *memory_space_config(address_spacenum spacenum = AS_0) const override;
address_space_config m_space_config;
required_device<gfxdecode_device> m_gfxdecode;

View File

@ -24,16 +24,6 @@ upd4701_device::upd4701_device(const machine_config &mconfig, const char *tag, d
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void upd4701_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------

View File

@ -36,9 +36,9 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_reset() override;
private:
// internal state
int m_cs;

View File

@ -179,16 +179,6 @@ ym2612_device::ym2612_device(const machine_config &mconfig, device_type type, co
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void ym2612_device::device_config_complete()
{
}
const device_type YM3438 = &device_creator<ym3438_device>;

View File

@ -31,7 +31,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_post_load() override;
virtual void device_stop() override;

View File

@ -143,13 +143,3 @@ ymf262_device::ymf262_device(const machine_config &mconfig, const char *tag, dev
m_irq_handler(*this)
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void ymf262_device::device_config_complete()
{
}

View File

@ -30,7 +30,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_stop() override;
virtual void device_reset() override;

View File

@ -179,13 +179,3 @@ ym3526_device::ym3526_device(const machine_config &mconfig, const char *tag, dev
m_irq_handler(*this)
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void ym3526_device::device_config_complete()
{
}

View File

@ -33,7 +33,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_stop() override;
virtual void device_reset() override;

View File

@ -176,13 +176,3 @@ ym3812_device::ym3812_device(const machine_config &mconfig, const char *tag, dev
m_irq_handler(*this)
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void ym3812_device::device_config_complete()
{
}

View File

@ -33,7 +33,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_stop() override;
virtual void device_reset() override;

View File

@ -216,13 +216,3 @@ y8950_device::y8950_device(const machine_config &mconfig, const char *tag, devic
m_region(*this, DEVICE_SELF)
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void y8950_device::device_config_complete()
{
}

View File

@ -53,7 +53,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_stop() override;
virtual void device_reset() override;

View File

@ -238,13 +238,3 @@ cdda_device::cdda_device(const machine_config &mconfig, const char *tag, device_
device_sound_interface(mconfig, *this)
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void cdda_device::device_config_complete()
{
}

View File

@ -29,7 +29,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
// sound stream update overrides

View File

@ -66,16 +66,6 @@ hc55516_device::hc55516_device(const machine_config &mconfig, device_type type,
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void hc55516_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------

View File

@ -24,7 +24,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_reset() override;

View File

@ -490,16 +490,6 @@ multipcm_device::multipcm_device(const machine_config &mconfig, const char *tag,
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void multipcm_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------

View File

@ -20,7 +20,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
// sound stream update overrides

View File

@ -134,16 +134,6 @@ okim6376_device::okim6376_device(const machine_config &mconfig, const char *tag,
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void okim6376_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------

View File

@ -41,7 +41,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_reset() override;

View File

@ -2207,16 +2207,6 @@ tms5220_device::tms5220_device(const machine_config &mconfig, device_type type,
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void tms5220_device::device_config_complete()
{
}
const device_type CD2501E = &device_creator<cd2501e_device>;

View File

@ -92,7 +92,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_reset() override;

View File

@ -37,16 +37,6 @@ wave_device::wave_device(const machine_config &mconfig, const char *tag, device_
m_cassette_tag = nullptr;
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void wave_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------

View File

@ -22,7 +22,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
// sound stream update overrides

View File

@ -1772,13 +1772,3 @@ ymf271_device::ymf271_device(const machine_config &mconfig, const char *tag, dev
memset(m_groups, 0, sizeof(m_groups));
memset(m_regs_main, 0, sizeof(m_regs_main));
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void ymf271_device::device_config_complete()
{
}

View File

@ -31,7 +31,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_reset() override;
virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override;

View File

@ -1035,13 +1035,3 @@ ymf278b_device::ymf278b_device(const machine_config &mconfig, const char *tag, d
m_last_fm_data(0)
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void ymf278b_device::device_config_complete()
{
}

View File

@ -29,7 +29,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_reset() override;
virtual void device_stop() override;

View File

@ -962,13 +962,3 @@ ymz280b_device::ymz280b_device(const machine_config &mconfig, const char *tag, d
{
memset(m_voice, 0, sizeof(m_voice));
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void ymz280b_device::device_config_complete()
{
}

View File

@ -41,7 +41,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_post_load() override;
virtual void device_reset() override;

View File

@ -40,16 +40,6 @@ gf4500_device::gf4500_device(const machine_config &mconfig, const char *tag, dev
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void gf4500_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------

View File

@ -26,7 +26,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_reset() override;

View File

@ -5760,16 +5760,6 @@ voodoo_device::~voodoo_device()
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void voodoo_device::device_config_complete()
{
}
//-------------------------------------------------
// device_reset - device-specific reset
//-------------------------------------------------

View File

@ -1837,7 +1837,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_stop() override;
virtual void device_reset() override;
public:

View File

@ -22,16 +22,6 @@ channelf_sound_device::channelf_sound_device(const machine_config &mconfig, cons
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void channelf_sound_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------

View File

@ -18,7 +18,6 @@ public:
void sound_w(int mode);
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
// sound stream update overrides

View File

@ -230,16 +230,6 @@ exidy_sound_device::exidy_sound_device(const machine_config &mconfig, device_typ
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void exidy_sound_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------
@ -674,16 +664,6 @@ venture_sound_device::venture_sound_device(const machine_config &mconfig, const
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void venture_sound_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------
@ -930,16 +910,6 @@ victory_sound_device::victory_sound_device(const machine_config &mconfig, const
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void victory_sound_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------

View File

@ -58,7 +58,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_reset() override;
@ -126,7 +125,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_reset() override;
@ -149,7 +147,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_reset() override;

View File

@ -73,16 +73,6 @@ exidy440_sound_device::exidy440_sound_device(const machine_config &mconfig, cons
}
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void exidy440_sound_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------

View File

@ -52,7 +52,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_stop() override;

View File

@ -396,16 +396,6 @@ galaxian_sound_device::galaxian_sound_device(const machine_config &mconfig, cons
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void galaxian_sound_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------

View File

@ -21,7 +21,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
// sound stream update overrides

View File

@ -41,16 +41,6 @@ m52_large_audio_device::m52_large_audio_device(const machine_config &mconfig, co
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void irem_audio_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------

View File

@ -29,7 +29,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
private:

View File

@ -115,22 +115,12 @@ lynx2_sound_device::lynx2_sound_device(const machine_config &mconfig, const char
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void lynx_sound_device::set_timer_delegate(device_t &device, lynx_sound_timer_delegate cb)
{
lynx_sound_device &dev = downcast<lynx_sound_device &>(device);
dev.m_timer_delegate = cb;
}
void lynx_sound_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------

View File

@ -39,7 +39,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_reset() override;

View File

@ -60,16 +60,6 @@ m72_audio_device::m72_audio_device(const machine_config &mconfig, const char *ta
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void m72_audio_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------

View File

@ -41,7 +41,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_reset() override;

View File

@ -180,16 +180,6 @@ micro3d_sound_device::micro3d_sound_device(const machine_config &mconfig, const
memset(m_dac, 0, sizeof(uint8_t)*4);
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void micro3d_sound_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------

View File

@ -56,16 +56,6 @@ phoenix_sound_device::phoenix_sound_device(const machine_config &mconfig, const
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void phoenix_sound_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------

View File

@ -42,16 +42,6 @@ pleiads_sound_device::pleiads_sound_device(const machine_config &mconfig, device
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void pleiads_sound_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------
@ -124,16 +114,6 @@ naughtyb_sound_device::naughtyb_sound_device(const machine_config &mconfig, cons
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void naughtyb_sound_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------
@ -202,16 +182,6 @@ popflame_sound_device::popflame_sound_device(const machine_config &mconfig, cons
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void popflame_sound_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------

View File

@ -54,7 +54,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
// sound stream update overrides
@ -109,7 +108,6 @@ public:
naughtyb_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
// sound stream update overrides
@ -126,7 +124,6 @@ public:
popflame_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
// sound stream update overrides

View File

@ -39,16 +39,6 @@ sega005_sound_device::sega005_sound_device(const machine_config &mconfig, const
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void sega005_sound_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------

View File

@ -161,16 +161,6 @@ snes_sound_device::snes_sound_device(const machine_config &mconfig, const char *
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void snes_sound_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------

View File

@ -79,7 +79,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_reset() override;

View File

@ -29,16 +29,6 @@ timeplt_audio_device::timeplt_audio_device(const machine_config &mconfig, const
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void timeplt_audio_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------

View File

@ -17,7 +17,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
// sound stream update overrides

View File

@ -21,16 +21,6 @@ trackfld_audio_device::trackfld_audio_device(const machine_config &mconfig, cons
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void trackfld_audio_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------

View File

@ -19,7 +19,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_reset() override;

View File

@ -82,15 +82,6 @@ tx1_sound_device::tx1_sound_device(const machine_config &mconfig, device_type ty
m_ym2_outputb(0)
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void tx1_sound_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
@ -351,16 +342,6 @@ buggyboy_sound_device::buggyboy_sound_device(const machine_config &mconfig, cons
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void buggyboy_sound_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------

View File

@ -106,7 +106,6 @@ public:
janshi_vdp_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
DECLARE_ADDRESS_MAP(map, 8);
protected:
virtual void device_config_complete() override;
virtual void device_validity_check(validity_checker &valid) const override;
virtual void device_start() override;
virtual void device_reset() override;
@ -140,7 +139,6 @@ janshi_vdp_device::janshi_vdp_device(const machine_config &mconfig, const char *
{
}
void janshi_vdp_device::device_config_complete(){}
void janshi_vdp_device::device_validity_check(validity_checker &valid) const {}
void janshi_vdp_device::device_start() {}
void janshi_vdp_device::device_reset() {}

View File

@ -23,7 +23,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
// sound stream update overrides
@ -52,16 +51,6 @@ pv1000_sound_device::pv1000_sound_device(const machine_config &mconfig, const ch
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void pv1000_sound_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------

View File

@ -377,7 +377,7 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override ;
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_reset() override;
@ -426,9 +426,9 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_reset() override;
protected:
class lut_fifo;
class bt458;
@ -638,9 +638,9 @@ public:
apollo_graphics_19i(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_reset() override;
private:
// internal state
};

View File

@ -236,7 +236,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_reset() override;

View File

@ -91,7 +91,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
// sound stream update overrides

View File

@ -174,7 +174,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
// sound stream update overrides

View File

@ -266,7 +266,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_reset() override;
@ -320,7 +319,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_reset() override;

View File

@ -130,7 +130,6 @@ public:
apollo_config_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_reset() override;
private:
@ -146,16 +145,6 @@ apollo_config_device::apollo_config_device(const machine_config &mconfig, const
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void apollo_config_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------

View File

@ -108,16 +108,6 @@ asic65_device::asic65_device(const machine_config &mconfig, const char *tag, dev
}
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void asic65_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------

View File

@ -41,7 +41,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_reset() override;
virtual machine_config_constructor device_mconfig_additions() const override;

View File

@ -1071,10 +1071,6 @@ deco104_device::deco104_device(const machine_config &mconfig, const char *tag, d
void deco104_device::device_config_complete()
{
}
void deco104_device::device_start()
{
deco_146_base_device::device_start();

View File

@ -19,7 +19,6 @@ public:
protected:
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_reset() override;

View File

@ -1340,10 +1340,6 @@ deco_146_base_device::deco_146_base_device(const machine_config &mconfig, device
m_external_addrswap[9] = 9;
}
void deco_146_base_device::device_config_complete()
{
}
uint16_t deco_146_base_device::port_dummy_cb(int unused)

View File

@ -133,7 +133,6 @@ public:
protected:
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_reset() override;

View File

@ -72,16 +72,6 @@ decocass_tape_device::decocass_tape_device(const machine_config &mconfig, const
elem = 0;
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void decocass_tape_device::device_config_complete()
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------

View File

@ -15,7 +15,6 @@ public:
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
virtual void device_reset() override;

View File

@ -17,14 +17,6 @@ igs022_device::igs022_device(const machine_config &mconfig, const char *tag, dev
{
}
void igs022_device::device_config_complete()
{
}
void igs022_device::device_validity_check(validity_checker &valid) const
{
}
void igs022_device::device_start()
{
// Reset stuff

View File

@ -12,8 +12,6 @@ public:
void IGS022_handle_command();
protected:
virtual void device_config_complete() override;
virtual void device_validity_check(validity_checker &valid) const override;
virtual void device_start() override;
virtual void device_reset() override;

View File

@ -22,14 +22,6 @@ igs025_device::igs025_device(const machine_config &mconfig, const char *tag, dev
m_execute_external = igs025_execute_external(FUNC(igs025_device::no_callback_setup), this);
}
void igs025_device::device_config_complete()
{
}
void igs025_device::device_validity_check(validity_checker &valid) const
{
}
void igs025_device::no_callback_setup()
{
printf("igs025 trigger external callback with no external callback setup\n");

View File

@ -31,8 +31,6 @@ public:
protected:
virtual void device_config_complete() override;
virtual void device_validity_check(validity_checker &valid) const override;
virtual void device_start() override;
virtual void device_reset() override;

View File

@ -16,14 +16,6 @@ igs028_device::igs028_device(const machine_config &mconfig, const char *tag, dev
{
}
void igs028_device::device_config_complete()
{
}
void igs028_device::device_validity_check(validity_checker &valid) const
{
}
void igs028_device::device_start()
{
m_sharedprotram = nullptr;

View File

@ -14,8 +14,6 @@ public:
void IGS028_handle(void);
protected:
virtual void device_config_complete() override;
virtual void device_validity_check(validity_checker &valid) const override;
virtual void device_start() override;
virtual void device_reset() override;

Some files were not shown because too many files have changed in this diff Show More