summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/zrt80.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/zrt80.cpp')
-rw-r--r--src/mame/drivers/zrt80.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mame/drivers/zrt80.cpp b/src/mame/drivers/zrt80.cpp
index f4baf373946..b8c03b1e6d2 100644
--- a/src/mame/drivers/zrt80.cpp
+++ b/src/mame/drivers/zrt80.cpp
@@ -293,13 +293,11 @@ void zrt80_state::zrt80(machine_config &config)
GFXDECODE(config, "gfxdecode", m_palette, gfx_zrt80);
- PALETTE(config, m_palette, 2);
- m_palette->set_init("palette", FUNC(palette_device::palette_init_monochrome));
+ PALETTE(config, m_palette, palette_device::MONOCHROME);
/* sound hardware */
SPEAKER(config, "mono").front_center();
- BEEP(config, m_beep, 800);
- m_beep->add_route(ALL_OUTPUTS, "mono", 0.50);
+ BEEP(config, m_beep, 800).add_route(ALL_OUTPUTS, "mono", 0.50);
/* Devices */
MC6845(config, m_crtc, XTAL(20'000'000) / 8);