summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/pro80.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/pro80.cpp')
-rw-r--r--src/mame/drivers/pro80.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/pro80.cpp b/src/mame/drivers/pro80.cpp
index 2f6944a419c..2f9364a0248 100644
--- a/src/mame/drivers/pro80.cpp
+++ b/src/mame/drivers/pro80.cpp
@@ -27,7 +27,6 @@ Then press W to save. To load, press L. If it says r at the end, it indicates a
#include "machine/timer.h"
#include "machine/z80pio.h"
#include "imagedev/cassette.h"
-#include "sound/wave.h"
#include "speaker.h"
@@ -184,13 +183,14 @@ void pro80_state::pro80(machine_config &config)
/* video hardware */
config.set_default_layout(layout_pro80);
+ Z80PIO(config, "pio", XTAL(4'000'000) / 2);
+
/* sound hardware */
SPEAKER(config, "mono").front_center();
- WAVE(config, "wave", "cassette").add_route(ALL_OUTPUTS, "mono", 0.05);
- /* Devices */
+ // Cassette
CASSETTE(config, m_cass);
- Z80PIO(config, "pio", XTAL(4'000'000) / 2);
+ m_cass->add_route(ALL_OUTPUTS, "mono", 0.05);
TIMER(config, "kansas_r").configure_periodic(FUNC(pro80_state::kansas_r), attotime::from_hz(40000)); // cass read
}