summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/istellar.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/istellar.cpp')
-rw-r--r--src/mame/drivers/istellar.cpp32
1 files changed, 15 insertions, 17 deletions
diff --git a/src/mame/drivers/istellar.cpp b/src/mame/drivers/istellar.cpp
index 9b64b5a6777..ec60d2368ae 100644
--- a/src/mame/drivers/istellar.cpp
+++ b/src/mame/drivers/istellar.cpp
@@ -275,19 +275,19 @@ WRITE_LINE_MEMBER(istellar_state::vblank_irq)
/* DRIVER */
MACHINE_CONFIG_START(istellar_state::istellar)
/* main cpu */
- MCFG_DEVICE_ADD("maincpu", Z80, GUESSED_CLOCK)
- MCFG_DEVICE_PROGRAM_MAP(z80_0_mem)
- MCFG_DEVICE_IO_MAP(z80_0_io)
+ Z80(config, m_maincpu, GUESSED_CLOCK);
+ m_maincpu->set_addrmap(AS_PROGRAM, &istellar_state::z80_0_mem);
+ m_maincpu->set_addrmap(AS_IO, &istellar_state::z80_0_io);
/* sound cpu */
- MCFG_DEVICE_ADD("audiocpu", Z80, GUESSED_CLOCK)
- MCFG_DEVICE_PROGRAM_MAP(z80_1_mem)
- MCFG_DEVICE_IO_MAP(z80_1_io)
+ z80_device &audiocpu(Z80(config, "audiocpu", GUESSED_CLOCK));
+ audiocpu.set_addrmap(AS_PROGRAM, &istellar_state::z80_1_mem);
+ audiocpu.set_addrmap(AS_IO, &istellar_state::z80_1_io);
/* ldp comm cpu */
- MCFG_DEVICE_ADD("sub", Z80, GUESSED_CLOCK)
- MCFG_DEVICE_PROGRAM_MAP(z80_2_mem)
- MCFG_DEVICE_IO_MAP(z80_2_io)
+ Z80(config, m_subcpu, GUESSED_CLOCK);
+ m_subcpu->set_addrmap(AS_PROGRAM, &istellar_state::z80_2_mem);
+ m_subcpu->set_addrmap(AS_IO, &istellar_state::z80_2_io);
GENERIC_LATCH_8(config, "latch1");
@@ -295,9 +295,11 @@ MACHINE_CONFIG_START(istellar_state::istellar)
latch2.data_pending_callback().set_inputline(m_subcpu, INPUT_LINE_NMI);
latch2.set_separate_acknowledge(true);
- MCFG_LASERDISC_LDV1000_ADD("laserdisc")
- MCFG_LASERDISC_OVERLAY_DRIVER(256, 256, istellar_state, screen_update_istellar)
- MCFG_LASERDISC_OVERLAY_PALETTE(m_palette)
+ PIONEER_LDV1000(config, m_laserdisc, 0);
+ m_laserdisc->set_overlay(256, 256, FUNC(istellar_state::screen_update_istellar));
+ m_laserdisc->set_overlay_palette(m_palette);
+ m_laserdisc->add_route(0, "lspeaker", 1.0);
+ m_laserdisc->add_route(1, "rspeaker", 1.0);
/* video hardware */
MCFG_LASERDISC_SCREEN_ADD_NTSC("screen", "laserdisc")
@@ -306,15 +308,11 @@ MACHINE_CONFIG_START(istellar_state::istellar)
// Daphne says "TODO: get the real interstellar resistor values"
PALETTE(config, m_palette, palette_device::RGB_444_PROMS, "proms", 256);
- MCFG_DEVICE_ADD("gfxdecode", GFXDECODE, "palette", gfx_istellar)
+ GFXDECODE(config, m_gfxdecode, m_palette, gfx_istellar);
/* sound hardware */
SPEAKER(config, "lspeaker").front_left();
SPEAKER(config, "rspeaker").front_right();
-
- MCFG_DEVICE_MODIFY("laserdisc")
- MCFG_SOUND_ROUTE(0, "lspeaker", 1.0)
- MCFG_SOUND_ROUTE(1, "rspeaker", 1.0)
MACHINE_CONFIG_END