summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tiki100.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tiki100.cpp')
-rw-r--r--src/mame/drivers/tiki100.cpp13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/mame/drivers/tiki100.cpp b/src/mame/drivers/tiki100.cpp
index f170f241a1b..a2bfdd22b00 100644
--- a/src/mame/drivers/tiki100.cpp
+++ b/src/mame/drivers/tiki100.cpp
@@ -24,7 +24,6 @@
#include "emu.h"
#include "includes/tiki100.h"
-#include "sound/wave.h"
#include "screen.h"
#include "softlist.h"
@@ -771,19 +770,19 @@ void tiki100_state::tiki100(machine_config &config)
output_latch_device &cent_data_out(OUTPUT_LATCH(config, "cent_data_out"));
m_centronics->set_output_latch(cent_data_out);
- CASSETTE(config, m_cassette);
- m_cassette->set_default_state(CASSETTE_STOPPED | CASSETTE_MOTOR_DISABLED | CASSETTE_SPEAKER_ENABLED);
-
- TIMER(config, "tape").configure_periodic(FUNC(tiki100_state::tape_tick), attotime::from_hz(44100));
-
/* sound hardware */
SPEAKER(config, "mono").front_center();
- WAVE(config, "wave", m_cassette).add_route(ALL_OUTPUTS, "mono", 0.05);
AY8912(config, m_psg, 8_MHz_XTAL / 4);
m_psg->set_flags(AY8910_SINGLE_OUTPUT);
m_psg->port_a_write_callback().set(FUNC(tiki100_state::video_scroll_w));
m_psg->add_route(ALL_OUTPUTS, "mono", 0.25);
+ CASSETTE(config, m_cassette);
+ m_cassette->set_default_state(CASSETTE_STOPPED | CASSETTE_MOTOR_DISABLED | CASSETTE_SPEAKER_ENABLED);
+ m_cassette->add_route(ALL_OUTPUTS, "mono", 0.05);
+
+ TIMER(config, "tape").configure_periodic(FUNC(tiki100_state::tape_tick), attotime::from_hz(44100));
+
/* internal ram */
RAM(config, RAM_TAG).set_default_size("64K");