mirror of
https://github.com/holub/mame
synced 2025-05-23 14:19:01 +03:00
tag regression
This commit is contained in:
parent
736ca889cd
commit
7a9aefbb60
@ -1693,7 +1693,7 @@ MACHINE_CONFIG_END
|
|||||||
static MACHINE_CONFIG_DERIVED( joust2, williams2 )
|
static MACHINE_CONFIG_DERIVED( joust2, williams2 )
|
||||||
|
|
||||||
/* basic machine hardware */
|
/* basic machine hardware */
|
||||||
MCFG_WILLIAMS_CVSD_SOUND_ADD("cvsd_sound")
|
MCFG_WILLIAMS_CVSD_SOUND_ADD("cvsd")
|
||||||
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)
|
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)
|
||||||
|
|
||||||
MCFG_MACHINE_START(joust2)
|
MCFG_MACHINE_START(joust2)
|
||||||
|
@ -13,12 +13,13 @@ class williams_state : public driver_device
|
|||||||
public:
|
public:
|
||||||
williams_state(const machine_config &mconfig, device_type type, const char *tag)
|
williams_state(const machine_config &mconfig, device_type type, const char *tag)
|
||||||
: driver_device(mconfig, type, tag),
|
: driver_device(mconfig, type, tag),
|
||||||
m_cvsd_sound(*this, "cvsd_sound"),
|
m_cvsd_sound(*this, "cvsd"),
|
||||||
m_nvram(*this, "nvram"),
|
m_nvram(*this, "nvram"),
|
||||||
m_videoram(*this, "videoram"),
|
m_videoram(*this, "videoram"),
|
||||||
m_blaster_palette_0(*this, "blaster_pal0"),
|
m_blaster_palette_0(*this, "blaster_pal0"),
|
||||||
m_blaster_scanline_control(*this, "blaster_scan"),
|
m_blaster_scanline_control(*this, "blaster_scan"),
|
||||||
m_williams2_tileram(*this, "williams2_tile"){ }
|
m_williams2_tileram(*this, "williams2_tile")
|
||||||
|
{ }
|
||||||
|
|
||||||
optional_device<williams_cvsd_sound_device> m_cvsd_sound;
|
optional_device<williams_cvsd_sound_device> m_cvsd_sound;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user