mirror of
https://github.com/holub/mame
synced 2025-07-05 18:08:04 +03:00
small DEVICE_RESET cleanups (nw)
This commit is contained in:
parent
7a416671bd
commit
fbc449fa6b
@ -493,7 +493,7 @@ void tms9901_device::device_stop(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*-------------------------------------------------
|
/*-------------------------------------------------
|
||||||
DEVICE_RESET( tms9901 )
|
device_reset - device-specific reset
|
||||||
-------------------------------------------------*/
|
-------------------------------------------------*/
|
||||||
|
|
||||||
void tms9901_device::device_reset(void)
|
void tms9901_device::device_reset(void)
|
||||||
|
@ -810,7 +810,7 @@ void tms9902_device::device_stop()
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*-------------------------------------------------
|
/*-------------------------------------------------
|
||||||
DEVICE_RESET( tms9902 )
|
device_reset - device-specific reset
|
||||||
-------------------------------------------------*/
|
-------------------------------------------------*/
|
||||||
|
|
||||||
void tms9902_device::device_reset()
|
void tms9902_device::device_reset()
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
*
|
*
|
||||||
* DEVICE_START(discrete) - Read Node list, initialise & reset
|
* DEVICE_START(discrete) - Read Node list, initialise & reset
|
||||||
* device_stop - Shutdown discrete sound system
|
* device_stop - Shutdown discrete sound system
|
||||||
* DEVICE_RESET(discrete) - Put sound system back to time 0
|
* device_reset - Put sound system back to time 0
|
||||||
* discrete_stream_update() - This does the real update to the sim
|
* discrete_stream_update() - This does the real update to the sim
|
||||||
*
|
*
|
||||||
************************************************************************/
|
************************************************************************/
|
||||||
|
@ -1044,11 +1044,6 @@ static DEVICE_STOP( es5506 )
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static DEVICE_RESET( es5506 )
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**********************************************************************************************
|
/**********************************************************************************************
|
||||||
|
|
||||||
@ -2199,7 +2194,6 @@ void es5506_device::device_start()
|
|||||||
|
|
||||||
void es5506_device::device_reset()
|
void es5506_device::device_reset()
|
||||||
{
|
{
|
||||||
DEVICE_RESET_NAME( es5506 )(this);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//-------------------------------------------------
|
//-------------------------------------------------
|
||||||
|
@ -177,7 +177,7 @@ void mpcc68561_t::device_start()
|
|||||||
|
|
||||||
|
|
||||||
/*-------------------------------------------------
|
/*-------------------------------------------------
|
||||||
DEVICE_RESET( mpcc68561 )
|
device_reset - device-specific reset
|
||||||
-------------------------------------------------*/
|
-------------------------------------------------*/
|
||||||
void mpcc68561_t::device_reset()
|
void mpcc68561_t::device_reset()
|
||||||
{
|
{
|
||||||
|
@ -174,7 +174,7 @@ void scc8530_t::device_start()
|
|||||||
|
|
||||||
|
|
||||||
/*-------------------------------------------------
|
/*-------------------------------------------------
|
||||||
DEVICE_RESET( scc8530 )
|
device_reset - device-specific reset
|
||||||
-------------------------------------------------*/
|
-------------------------------------------------*/
|
||||||
void scc8530_t::device_reset()
|
void scc8530_t::device_reset()
|
||||||
{
|
{
|
||||||
|
@ -809,10 +809,6 @@ static DEVICE_START(atari_fdc)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static DEVICE_RESET(atari_fdc)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
const device_type ATARI_FDC = &device_creator<atari_fdc_device>;
|
const device_type ATARI_FDC = &device_creator<atari_fdc_device>;
|
||||||
|
|
||||||
atari_fdc_device::atari_fdc_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
atari_fdc_device::atari_fdc_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||||
@ -846,7 +842,6 @@ void atari_fdc_device::device_start()
|
|||||||
|
|
||||||
void atari_fdc_device::device_reset()
|
void atari_fdc_device::device_reset()
|
||||||
{
|
{
|
||||||
DEVICE_RESET_NAME( atari_fdc )(this);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//-------------------------------------------------
|
//-------------------------------------------------
|
||||||
|
@ -319,14 +319,6 @@ static DEVICE_START( beta_disk )
|
|||||||
beta->wd179x = device->machine().device(tempstring);
|
beta->wd179x = device->machine().device(tempstring);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*-------------------------------------------------
|
|
||||||
DEVICE_RESET( beta_disk )
|
|
||||||
-------------------------------------------------*/
|
|
||||||
|
|
||||||
static DEVICE_RESET( beta_disk )
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
const device_type BETA_DISK = &device_creator<beta_disk_device>;
|
const device_type BETA_DISK = &device_creator<beta_disk_device>;
|
||||||
|
|
||||||
beta_disk_device::beta_disk_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
beta_disk_device::beta_disk_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||||
@ -350,7 +342,6 @@ void beta_disk_device::device_start()
|
|||||||
|
|
||||||
void beta_disk_device::device_reset()
|
void beta_disk_device::device_reset()
|
||||||
{
|
{
|
||||||
DEVICE_RESET_NAME( beta_disk )(this);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//-------------------------------------------------
|
//-------------------------------------------------
|
||||||
|
@ -225,7 +225,7 @@ machine_config_constructor teleprinter_device::device_mconfig_additions() const
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*-------------------------------------------------
|
/*-------------------------------------------------
|
||||||
DEVICE_RESET( teleprinter )
|
device_reset - device-specific reset
|
||||||
-------------------------------------------------*/
|
-------------------------------------------------*/
|
||||||
|
|
||||||
void teleprinter_device::device_reset()
|
void teleprinter_device::device_reset()
|
||||||
|
@ -215,7 +215,7 @@ void tms5501_device::timer_reload(int timer)
|
|||||||
|
|
||||||
|
|
||||||
/*-------------------------------------------------
|
/*-------------------------------------------------
|
||||||
DEVICE_RESET( tms5501 )
|
device_reset - device-specific reset
|
||||||
-------------------------------------------------*/
|
-------------------------------------------------*/
|
||||||
|
|
||||||
void tms5501_device::device_reset()
|
void tms5501_device::device_reset()
|
||||||
|
Loading…
Reference in New Issue
Block a user