summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/spc1000.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/spc1000.cpp')
-rw-r--r--src/mame/drivers/spc1000.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mame/drivers/spc1000.cpp b/src/mame/drivers/spc1000.cpp
index 1d6d586ac93..f7bde1b2acc 100644
--- a/src/mame/drivers/spc1000.cpp
+++ b/src/mame/drivers/spc1000.cpp
@@ -127,7 +127,6 @@ small ics.
#include "imagedev/cassette.h"
#include "machine/ram.h"
#include "sound/ay8910.h"
-#include "sound/wave.h"
#include "video/mc6847.h"
#include "bus/centronics/ctronics.h"
@@ -487,7 +486,6 @@ void spc1000_state::spc1000(machine_config &config)
ay8910.port_a_read_callback().set(FUNC(spc1000_state::porta_r));
ay8910.port_b_write_callback().set("cent_data_out", FUNC(output_latch_device::bus_w));
ay8910.add_route(ALL_OUTPUTS, "mono", 1.00);
- WAVE(config, "wave", m_cass).add_route(ALL_OUTPUTS, "mono", 0.05);
SPC1000_EXP_SLOT(config, "ext1", spc1000_exp);
@@ -502,6 +500,7 @@ void spc1000_state::spc1000(machine_config &config)
CASSETTE(config, m_cass);
m_cass->set_formats(spc1000_cassette_formats);
m_cass->set_default_state(CASSETTE_STOPPED | CASSETTE_SPEAKER_ENABLED | CASSETTE_MOTOR_DISABLED);
+ m_cass->add_route(ALL_OUTPUTS, "mono", 0.05);
m_cass->set_interface("spc1000_cass");
SOFTWARE_LIST(config, "cass_list").set_original("spc1000_cass");