summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mz2000.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mz2000.cpp')
-rw-r--r--src/mame/drivers/mz2000.cpp11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/mame/drivers/mz2000.cpp b/src/mame/drivers/mz2000.cpp
index 71115b12394..dce21ba2af8 100644
--- a/src/mame/drivers/mz2000.cpp
+++ b/src/mame/drivers/mz2000.cpp
@@ -28,7 +28,6 @@
#include "machine/wd_fdc.h"
#include "machine/z80pio.h"
#include "sound/beep.h"
-#include "sound/wave.h"
#include "emupal.h"
#include "screen.h"
@@ -902,6 +901,9 @@ void mz2000_state::mz2000(machine_config &config)
m_pit8253->set_clk<1>(31250); /* needed by "Art Magic" to boot */
m_pit8253->set_clk<2>(31250);
+ SPEAKER(config, "mono").front_center();
+ BEEP(config, "beeper", 4096).add_route(ALL_OUTPUTS,"mono",0.15);
+
MB8877(config, m_mb8877a, 1_MHz_XTAL);
FLOPPY_CONNECTOR(config, "mb8877a:0", mz2000_floppies, "dd", mz2000_state::floppy_formats);
@@ -914,6 +916,7 @@ void mz2000_state::mz2000(machine_config &config)
CASSETTE(config, m_cass);
m_cass->set_formats(mz700_cassette_formats);
m_cass->set_default_state(CASSETTE_STOPPED | CASSETTE_MOTOR_ENABLED | CASSETTE_SPEAKER_ENABLED);
+ m_cass->add_route(ALL_OUTPUTS, "mono", 0.05);
m_cass->set_interface("mz_cass");
SOFTWARE_LIST(config, "cass_list").set_original("mz2000_cass");
@@ -929,12 +932,6 @@ void mz2000_state::mz2000(machine_config &config)
GFXDECODE(config, "gfxdecode", m_palette, gfx_mz2000);
PALETTE(config, m_palette, palette_device::BRG_3BIT);
-
- SPEAKER(config, "mono").front_center();
-
- WAVE(config, "wave", m_cass).add_route(ALL_OUTPUTS, "mono", 0.05);
-
- BEEP(config, "beeper", 4096).add_route(ALL_OUTPUTS,"mono",0.15);
}
void mz2000_state::mz80b(machine_config &config)