(nw) fixed the build.

This commit is contained in:
Robbbert 2019-04-14 22:33:33 +10:00
parent 93b1d432ab
commit 1320dd3910
14 changed files with 15 additions and 30 deletions

View File

@ -90,8 +90,7 @@ void a1supply_state::video_start()
void a1supply_state::a1supply(machine_config &config)
{
/* basic machine hardware */
NETLIST_CPU(config, m_maincpu, NETLIST_CLOCK);
m_maincpu->set_constructor(netlist_a1supply);
NETLIST_CPU(config, m_maincpu, NETLIST_CLOCK).set_source(netlist_a1supply);
/* video hardware */
SCREEN(config, "screen", SCREEN_TYPE_RASTER);

View File

@ -103,8 +103,7 @@ void sburners_state::video_start()
void sburners_state::sburners(machine_config &config)
{
/* basic machine hardware */
NETLIST_CPU(config, m_maincpu, NETLIST_CLOCK);
m_maincpu->set_constructor(netlist_sburners);
NETLIST_CPU(config, m_maincpu, NETLIST_CLOCK).set_source(netlist_sburners);
/* video hardware */
SCREEN(config, "screen", SCREEN_TYPE_RASTER);

View File

@ -91,8 +91,7 @@ void bailey_state::video_start()
void bailey_state::bailey(machine_config &config)
{
/* basic machine hardware */
NETLIST_CPU(config, m_maincpu, NETLIST_CLOCK);
m_maincpu->set_constructor(netlist_bailey);
NETLIST_CPU(config, m_maincpu, NETLIST_CLOCK).set_source(netlist_bailey);
/* video hardware */
SCREEN(config, "screen", SCREEN_TYPE_RASTER);

View File

@ -97,8 +97,7 @@ void chicago_state::video_start()
void chicago_state::chicago(machine_config &config)
{
/* basic machine hardware */
NETLIST_CPU(config, m_maincpu, NETLIST_CLOCK);
m_maincpu->set_constructor(netlist_chicago);
NETLIST_CPU(config, m_maincpu, NETLIST_CLOCK).set_source(netlist_chicago);
/* video hardware */
SCREEN(config, "screen", SCREEN_TYPE_RASTER);

View File

@ -95,8 +95,7 @@ void electra_state::video_start()
void electra_state::electra(machine_config &config)
{
/* basic machine hardware */
NETLIST_CPU(config, m_maincpu, NETLIST_CLOCK);
m_maincpu->set_constructor(netlist_electra);
NETLIST_CPU(config, m_maincpu, NETLIST_CLOCK).set_source(netlist_electra);
/* video hardware */
SCREEN(config, "screen", SCREEN_TYPE_RASTER);

View File

@ -98,8 +98,7 @@ void exidyttl_state::video_start()
void exidyttl_state::attack(machine_config &config)
{
/* basic machine hardware */
NETLIST_CPU(config, m_maincpu, NETLIST_CLOCK);
m_maincpu->set_constructor(netlist_attack);
NETLIST_CPU(config, m_maincpu, NETLIST_CLOCK).set_source(netlist_attack);
/* video hardware */
SCREEN(config, "screen", SCREEN_TYPE_RASTER);
@ -114,8 +113,7 @@ void exidyttl_state::attack(machine_config &config)
void exidyttl_state::deathrac(machine_config &config)
{
/* basic machine hardware */
NETLIST_CPU(config, m_maincpu, NETLIST_CLOCK);
m_maincpu->set_constructor(netlist_attack);
NETLIST_CPU(config, m_maincpu, NETLIST_CLOCK).set_source(netlist_attack);
/* video hardware */
SCREEN(config, "screen", SCREEN_TYPE_RASTER);

View File

@ -91,8 +91,7 @@ void fungames_state::video_start()
void fungames_state::fungames(machine_config &config)
{
/* basic machine hardware */
NETLIST_CPU(config, m_maincpu, NETLIST_CLOCK);
m_maincpu->set_constructor(netlist_fungames);
NETLIST_CPU(config, m_maincpu, NETLIST_CLOCK).set_source(netlist_fungames);
/* video hardware */
SCREEN(config, "screen", SCREEN_TYPE_RASTER);

View File

@ -93,8 +93,7 @@ void meadwttl_state::video_start()
void meadwttl_state::meadows(machine_config &config)
{
/* basic machine hardware */
NETLIST_CPU(config, m_maincpu, NETLIST_CLOCK);
m_maincpu->set_constructor(netlist_meadows);
NETLIST_CPU(config, m_maincpu, NETLIST_CLOCK).set_source(netlist_meadows);
/* video hardware */
SCREEN(config, "screen", SCREEN_TYPE_RASTER);

View File

@ -186,8 +186,7 @@ void monacogp_state::video_start()
void monacogp_state::monacogp(machine_config &config)
{
/* basic machine hardware */
NETLIST_CPU(config, m_maincpu, NETLIST_CLOCK);
m_maincpu->set_constructor(netlist_monacogp);
NETLIST_CPU(config, m_maincpu, NETLIST_CLOCK).set_source(netlist_monacogp);
/* video hardware */
SCREEN(config, "screen", SCREEN_TYPE_RASTER);

View File

@ -102,8 +102,7 @@ void pse_state::video_start()
void pse_state::pse(machine_config &config)
{
/* basic machine hardware */
NETLIST_CPU(config, m_maincpu, NETLIST_CLOCK);
m_maincpu->set_constructor(netlist_pse);
NETLIST_CPU(config, m_maincpu, NETLIST_CLOCK).set_source(netlist_pse);
/* video hardware */
SCREEN(config, "screen", SCREEN_TYPE_RASTER);

View File

@ -113,8 +113,7 @@ void ramtek_state::video_start()
void ramtek_state::ramtek(machine_config &config)
{
/* basic machine hardware */
NETLIST_CPU(config, m_maincpu, NETLIST_CLOCK);
m_maincpu->set_constructor(netlist_ramtek);
NETLIST_CPU(config, m_maincpu, NETLIST_CLOCK).set_source(netlist_ramtek);
/* video hardware */
SCREEN(config, "screen", SCREEN_TYPE_RASTER);

View File

@ -134,8 +134,7 @@ void segattl_state::video_start()
void segattl_state::segattl(machine_config &config)
{
/* basic machine hardware */
NETLIST_CPU(config, m_maincpu, NETLIST_CLOCK);
m_maincpu->set_constructor(netlist_segattl);
NETLIST_CPU(config, m_maincpu, NETLIST_CLOCK).set_source(netlist_segattl);
/* video hardware */
SCREEN(config, "screen", SCREEN_TYPE_RASTER);

View File

@ -139,8 +139,7 @@ void taitottl_state::video_start()
void taitottl_state::taitottl(machine_config &config)
{
/* basic machine hardware */
NETLIST_CPU(config, m_maincpu, NETLIST_CLOCK);
m_maincpu->set_constructor(netlist_taitottl);
NETLIST_CPU(config, m_maincpu, NETLIST_CLOCK).set_source(netlist_taitottl);
/* video hardware */
SCREEN(config, "screen", SCREEN_TYPE_RASTER);

View File

@ -92,8 +92,7 @@ void usbilliards_state::video_start()
void usbilliards_state::usbilliards(machine_config &config)
{
/* basic machine hardware */
NETLIST_CPU(config, m_maincpu, NETLIST_CLOCK);
m_maincpu->set_constructor(netlist_usbilliards);
NETLIST_CPU(config, m_maincpu, NETLIST_CLOCK).set_source(netlist_usbilliards);
/* video hardware */
SCREEN(config, "screen", SCREEN_TYPE_RASTER);