Skip to content

Commit

Permalink
(nw) removed unneccesary casting of cassette_state;
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbbert committed Jun 28, 2019
1 parent 9e84835 commit 7f1a02d
Show file tree
Hide file tree
Showing 36 changed files with 80 additions and 53 deletions.
2 changes: 1 addition & 1 deletion src/mame/drivers/a2600.cpp
Expand Up @@ -126,7 +126,7 @@ WRITE8_MEMBER(a2600_base_state::switch_A_w)
// switch( ioport("CONTROLLERS")->read() % CATEGORY_SELECT )
// {
// case 0x0a: /* KidVid voice module */
// m_cassette->change_state(( data & 0x02 ) ? (cassette_state)CASSETTE_MOTOR_DISABLED : (cassette_state)(CASSETTE_MOTOR_ENABLED | CASSETTE_PLAY), (cassette_state)CASSETTE_MOTOR_DISABLED );
// m_cassette->change_state(( data & 0x02 ) ? CASSETTE_MOTOR_DISABLED : (CASSETTE_MOTOR_ENABLED | CASSETTE_PLAY), CASSETTE_MOTOR_DISABLED );
// break;
// }
}
Expand Down
13 changes: 7 additions & 6 deletions src/mame/drivers/a5105.cpp
Expand Up @@ -173,11 +173,11 @@ READ8_MEMBER( a5105_state::pio_pb_r )
PIO Channel B
0 W PAR12
1 ? SER1
2 ? SER2
3 ? SER3
4 ? SER4
0 R PAR12
1 W SER1
2 W SER2
3 R SER3
4 R SER4
5 W JOY2
6 W /JOYEN
7 R Cassette Data
Expand Down Expand Up @@ -608,7 +608,7 @@ void a5105_state::a5105(machine_config &config)

/* sound hardware */
SPEAKER(config, "mono").front_center();
WAVE(config, "wave", "cassette").add_route(ALL_OUTPUTS, "mono", 0.25);
WAVE(config, "wave", "cassette").add_route(ALL_OUTPUTS, "mono", 0.05);
BEEP(config, "beeper", 500).add_route(ALL_OUTPUTS, "mono", 0.50);

/* Devices */
Expand All @@ -627,6 +627,7 @@ void a5105_state::a5105(machine_config &config)
pio.out_int_callback().set_inputline(m_maincpu, 0);

CASSETTE(config, m_cass);
m_cass->set_default_state(CASSETTE_STOPPED | CASSETTE_SPEAKER_ENABLED | CASSETTE_MOTOR_ENABLED);

UPD765A(config, m_fdc, 8'000'000, true, true);
FLOPPY_CONNECTOR(config, "upd765a:0", a5105_floppies, "525qd", a5105_state::floppy_formats);
Expand Down
2 changes: 1 addition & 1 deletion src/mame/drivers/abc80.cpp
Expand Up @@ -515,7 +515,7 @@ MACHINE_CONFIG_START(abc80_state::abc80)
m_csg->set_oneshot_params(CAP_U(0.1), RES_K(330));
m_csg->add_route(ALL_OUTPUTS, "mono", 0.25);

WAVE(config, "wave", m_cassette).add_route(ALL_OUTPUTS, "mono", 0.25);
WAVE(config, "wave", m_cassette).add_route(ALL_OUTPUTS, "mono", 0.05);

// devices
Z80PIO(config, m_pio, XTAL(11'980'800)/2/2);
Expand Down
4 changes: 3 additions & 1 deletion src/mame/drivers/abc80x.cpp
Expand Up @@ -150,6 +150,7 @@ Video PCB Layout (High Resolution)

#include "emu.h"
#include "includes/abc80x.h"
#include "sound/wave.h"

#define LOG 0

Expand Down Expand Up @@ -1084,7 +1085,7 @@ MACHINE_CONFIG_START(abc800_state::common)
m_dart->out_int_callback().set_inputline(m_maincpu, INPUT_LINE_IRQ0);

CASSETTE(config, m_cassette);
m_cassette->set_default_state(CASSETTE_STOPPED | CASSETTE_MOTOR_DISABLED | CASSETTE_SPEAKER_MUTED);
m_cassette->set_default_state(CASSETTE_STOPPED | CASSETTE_MOTOR_DISABLED | CASSETTE_SPEAKER_ENABLED);
TIMER(config, TIMER_CASSETTE_TAG).configure_periodic(FUNC(abc800_state::cassette_input_tick), attotime::from_hz(44100));

rs232_port_device &rs232a(RS232_PORT(config, RS232_A_TAG, default_rs232_devices, nullptr));
Expand All @@ -1107,6 +1108,7 @@ MACHINE_CONFIG_START(abc800_state::common)
// sound hardware
SPEAKER(config, "mono").front_center();
DISCRETE(config, m_discrete, abc800_discrete).add_route(ALL_OUTPUTS, "mono", 0.80);
WAVE(config, "wave", m_cassette).add_route(ALL_OUTPUTS, "mono", 0.05);

// software list
SOFTWARE_LIST(config, "flop_list").set_original("abc800");
Expand Down
3 changes: 2 additions & 1 deletion src/mame/drivers/ac1.cpp
Expand Up @@ -156,9 +156,10 @@ void ac1_state::ac1(machine_config &config)
PALETTE(config, m_palette, palette_device::MONOCHROME);

SPEAKER(config, "mono").front_center();
WAVE(config, "wave", "cassette").add_route(ALL_OUTPUTS, "mono", 0.25);
WAVE(config, "wave", "cassette").add_route(ALL_OUTPUTS, "mono", 0.05);

CASSETTE(config, m_cassette);
m_cassette->set_default_state(CASSETTE_STOPPED | CASSETTE_SPEAKER_ENABLED | CASSETTE_MOTOR_ENABLED);
}

void ac1_state::ac1_32(machine_config &config)
Expand Down
3 changes: 2 additions & 1 deletion src/mame/drivers/acrnsys1.cpp
Expand Up @@ -274,7 +274,7 @@ void acrnsys1_state::acrnsys1(machine_config &config)

/* sound hardware */
SPEAKER(config, "mono").front_center();
WAVE(config, "wave", m_cass).add_route(ALL_OUTPUTS, "mono", 0.25);
WAVE(config, "wave", m_cass).add_route(ALL_OUTPUTS, "mono", 0.05);

/* devices */
ins8154_device &b1(INS8154(config, "b1"));
Expand All @@ -285,6 +285,7 @@ void acrnsys1_state::acrnsys1(machine_config &config)
TTL74145(config, m_ttl74145, 0);

CASSETTE(config, m_cass);
m_cass->set_default_state(CASSETTE_STOPPED | CASSETTE_SPEAKER_ENABLED | CASSETTE_MOTOR_ENABLED);

TIMER(config, "kansas_w").configure_periodic(FUNC(acrnsys1_state::kansas_w), attotime::from_hz(4800));
TIMER(config, "kansas_r").configure_periodic(FUNC(acrnsys1_state::kansas_r), attotime::from_hz(40000));
Expand Down
5 changes: 3 additions & 2 deletions src/mame/drivers/agat.cpp
Expand Up @@ -60,7 +60,7 @@
#include "machine/bankdev.h"
#include "machine/kb3600.h"
#include "machine/timer.h"

#include "sound/wave.h"
#include "sound/spkrdev.h"

#include "bus/a2bus/a2diskii.h"
Expand Down Expand Up @@ -1091,6 +1091,7 @@ void agat7_state::agat7(machine_config &config)
/* sound hardware */
SPEAKER(config, "mono").front_center();
SPEAKER_SOUND(config, m_speaker).add_route(ALL_OUTPUTS, "mono", 1.00);
WAVE(config, "wave", m_cassette).add_route(ALL_OUTPUTS, "mono", 0.05);

/* /INH banking */
ADDRESS_MAP_BANK(config, m_upperbank).set_map(&agat7_state::inhbank_map).set_options(ENDIANNESS_LITTLE, 8, 32, 0x3000);
Expand Down Expand Up @@ -1131,7 +1132,7 @@ void agat7_state::agat7(machine_config &config)
A2BUS_SLOT(config, "sl6", m_a2bus, agat7_cards, "a7ram");

CASSETTE(config,m_cassette);
m_cassette->set_default_state(CASSETTE_STOPPED);
m_cassette->set_default_state(CASSETTE_STOPPED | CASSETTE_SPEAKER_ENABLED | CASSETTE_MOTOR_ENABLED);
}


Expand Down
4 changes: 2 additions & 2 deletions src/mame/drivers/apogee.cpp
Expand Up @@ -253,7 +253,7 @@ void apogee_state::apogee(machine_config &config)
PALETTE(config, m_palette, FUNC(apogee_state::radio86_palette), 3);

SPEAKER(config, "mono").front_center();
WAVE(config, "wave", m_cassette).add_route(ALL_OUTPUTS, "mono", 0.25);
WAVE(config, "wave", m_cassette).add_route(ALL_OUTPUTS, "mono", 0.05);
SPEAKER_SOUND(config, m_speaker);
m_speaker->set_levels(4, speaker_levels);
m_speaker->add_route(ALL_OUTPUTS, "mono", 0.75);
Expand All @@ -267,7 +267,7 @@ void apogee_state::apogee(machine_config &config)

CASSETTE(config, m_cassette);
m_cassette->set_formats(rka_cassette_formats);
m_cassette->set_default_state((cassette_state)(CASSETTE_STOPPED | CASSETTE_SPEAKER_ENABLED | CASSETTE_MOTOR_ENABLED));
m_cassette->set_default_state(CASSETTE_STOPPED | CASSETTE_SPEAKER_ENABLED | CASSETTE_MOTOR_ENABLED);
m_cassette->set_interface("apogee_cass");

SOFTWARE_LIST(config, "cass_list").set_original("apogee");
Expand Down
4 changes: 2 additions & 2 deletions src/mame/drivers/applix.cpp
Expand Up @@ -892,7 +892,7 @@ void applix_state::applix(machine_config &config)
vref.add_route(0, "ldac", 1.0, DAC_VREF_POS_INPUT).add_route(0, "ldac", -1.0, DAC_VREF_NEG_INPUT);
vref.add_route(0, "rdac", 1.0, DAC_VREF_POS_INPUT).add_route(0, "rdac", -1.0, DAC_VREF_NEG_INPUT);

WAVE(config, "wave", m_cass).add_route(ALL_OUTPUTS, "lspeaker", 0.50);
WAVE(config, "wave", m_cass).add_route(ALL_OUTPUTS, "lspeaker", 0.10);

/* Devices */
MC6845(config, m_crtc, 30_MHz_XTAL / 16); // MC6545 @ 1.875 MHz
Expand Down Expand Up @@ -920,7 +920,7 @@ void applix_state::applix(machine_config &config)
m_centronics->set_output_latch(*m_cent_data_out);

CASSETTE(config, m_cass);
m_cass->set_default_state(CASSETTE_STOPPED | CASSETTE_MOTOR_ENABLED | CASSETTE_SPEAKER_MUTED);
m_cass->set_default_state(CASSETTE_STOPPED | CASSETTE_MOTOR_ENABLED | CASSETTE_SPEAKER_ENABLED);

WD1772(config, m_fdc, 16_MHz_XTAL / 2); //connected to Z80H clock pin
FLOPPY_CONNECTOR(config, "fdc:0", applix_floppies, "35dd", applix_state::floppy_formats).enable_sound(true);
Expand Down
4 changes: 3 additions & 1 deletion src/mame/drivers/aquarius.cpp
Expand Up @@ -24,6 +24,7 @@
#include "emu.h"
#include "includes/aquarius.h"

#include "sound/wave.h"
#include "softlist.h"
#include "speaker.h"

Expand Down Expand Up @@ -373,6 +374,7 @@ void aquarius_state::aquarius(machine_config &config)
/* sound hardware */
SPEAKER(config, "mono").front_center();
SPEAKER_SOUND(config, m_speaker).add_route(ALL_OUTPUTS, "mono", 0.25);
WAVE(config, "wave", m_cassette).add_route(ALL_OUTPUTS, "mono", 0.05);

ay8910_device &ay8910(AY8910(config, "ay8910", XTAL(3'579'545)/2)); // ??? AY-3-8914
ay8910.port_a_read_callback().set_ioport("RIGHT");
Expand All @@ -381,7 +383,7 @@ void aquarius_state::aquarius(machine_config &config)

/* cassette */
CASSETTE(config, m_cassette);
m_cassette->set_default_state(CASSETTE_STOPPED | CASSETTE_MOTOR_ENABLED | CASSETTE_SPEAKER_MUTED);
m_cassette->set_default_state(CASSETTE_STOPPED | CASSETTE_MOTOR_ENABLED | CASSETTE_SPEAKER_ENABLED);

/* cartridge */
GENERIC_CARTSLOT(config, m_cart, generic_linear_slot, "aquarius_cart");
Expand Down
4 changes: 3 additions & 1 deletion src/mame/drivers/atom.cpp
Expand Up @@ -115,6 +115,7 @@ Hardware: PPIA 8255
#include "emu.h"
#include "includes/atom.h"
#include "formats/imageutl.h"
#include "sound/wave.h"
#include "screen.h"
#include "softlist.h"
#include "speaker.h"
Expand Down Expand Up @@ -723,6 +724,7 @@ MACHINE_CONFIG_START(atom_state::atom)
/* sound hardware */
SPEAKER(config, "mono").front_center();
SPEAKER_SOUND(config, m_speaker).add_route(ALL_OUTPUTS, "mono", 1.00);
WAVE(config, "wave", m_cassette).add_route(ALL_OUTPUTS, "mono", 0.05);

/* devices */
TIMER(config, "hz2400").configure_periodic(FUNC(atom_state::cassette_output_tick), attotime::from_hz(4806));
Expand Down Expand Up @@ -753,7 +755,7 @@ MACHINE_CONFIG_START(atom_state::atom)

CASSETTE(config, m_cassette);
m_cassette->set_formats(atom_cassette_formats);
m_cassette->set_default_state(CASSETTE_STOPPED | CASSETTE_MOTOR_ENABLED | CASSETTE_SPEAKER_MUTED);
m_cassette->set_default_state(CASSETTE_STOPPED | CASSETTE_MOTOR_ENABLED | CASSETTE_SPEAKER_ENABLED);
m_cassette->set_interface("atom_cass");

MCFG_QUICKLOAD_ADD("quickload", atom_state, atom_atm, "atm")
Expand Down
2 changes: 2 additions & 0 deletions src/mame/drivers/bcs3.cpp
Expand Up @@ -456,6 +456,7 @@ void bcs3_state::bcs3a(machine_config &config)
m_screen->set_screen_update(FUNC(bcs3_state::screen_update_bcs3a));

CASSETTE(config, m_cass);
m_cass->set_default_state(CASSETTE_STOPPED | CASSETTE_SPEAKER_ENABLED | CASSETTE_MOTOR_ENABLED);

/* sound hardware */
SPEAKER(config, "mono").front_center();
Expand Down Expand Up @@ -487,6 +488,7 @@ void bcs3_state::bcs3b(machine_config &config)
m_ctc->zc_callback<1>().set(FUNC(bcs3_state::ctc_z1_w));

CASSETTE(config, m_cass);
m_cass->set_default_state(CASSETTE_STOPPED | CASSETTE_SPEAKER_ENABLED | CASSETTE_MOTOR_ENABLED);

/* sound hardware */
SPEAKER(config, "mono").front_center();
Expand Down
3 changes: 2 additions & 1 deletion src/mame/drivers/binbug.cpp
Expand Up @@ -317,8 +317,9 @@ void binbug_state::binbug_base(machine_config &config)

/* Cassette */
CASSETTE(config, m_cass);
m_cass->set_default_state(CASSETTE_STOPPED | CASSETTE_SPEAKER_ENABLED | CASSETTE_MOTOR_ENABLED);
SPEAKER(config, "mono").front_center();
WAVE(config, "wave", "cassette").add_route(ALL_OUTPUTS, "mono", 0.25);
WAVE(config, "wave", "cassette").add_route(ALL_OUTPUTS, "mono", 0.05);
}

void binbug_state::binbug(machine_config &config)
Expand Down
4 changes: 2 additions & 2 deletions src/mame/drivers/bk.cpp
Expand Up @@ -184,10 +184,10 @@ void bk_state::bk0010(machine_config &config)
PALETTE(config, "palette", palette_device::MONOCHROME);

SPEAKER(config, "mono").front_center();
WAVE(config, "wave", "cassette").add_route(ALL_OUTPUTS, "mono", 0.25);
WAVE(config, "wave", "cassette").add_route(ALL_OUTPUTS, "mono", 0.05);

CASSETTE(config, m_cassette);
m_cassette->set_default_state((cassette_state)(CASSETTE_STOPPED | CASSETTE_SPEAKER_ENABLED | CASSETTE_MOTOR_ENABLED));
m_cassette->set_default_state(CASSETTE_STOPPED | CASSETTE_SPEAKER_ENABLED | CASSETTE_MOTOR_ENABLED);
m_cassette->set_interface("bk0010_cass");

SOFTWARE_LIST(config, "cass_list").set_original("bk0010");
Expand Down
3 changes: 2 additions & 1 deletion src/mame/drivers/bml3.cpp
Expand Up @@ -958,10 +958,11 @@ void bml3_state::bml3_common(machine_config &config)
acia_clock.signal_handler().append(m_acia, FUNC(acia6850_device::write_rxc));

CASSETTE(config, m_cass);
m_cass->set_default_state(CASSETTE_STOPPED | CASSETTE_SPEAKER_ENABLED | CASSETTE_MOTOR_ENABLED);

/* Audio */
SPEAKER(config, "mono").front_center();
WAVE(config, "wave", "cassette").add_route(ALL_OUTPUTS, "mono", 0.25);
WAVE(config, "wave", "cassette").add_route(ALL_OUTPUTS, "mono", 0.05);
SPEAKER_SOUND(config, "speaker").add_route(ALL_OUTPUTS, "mono", 0.50);

/* slot devices */
Expand Down
9 changes: 7 additions & 2 deletions src/mame/drivers/bob85.cpp
Expand Up @@ -24,6 +24,8 @@ Test Paste:
#include "emu.h"
#include "cpu/i8085/i8085.h"
#include "imagedev/cassette.h"
#include "sound/wave.h"
#include "speaker.h"
#include "bob85.lh"


Expand Down Expand Up @@ -196,7 +198,7 @@ WRITE_LINE_MEMBER( bob85_state::sod_w )

READ_LINE_MEMBER( bob85_state::sid_r )
{
return m_cass->input() > 0.0;
return (m_cass->input() > 0.04) ? 1 : 0;
}

void bob85_state::bob85(machine_config &config)
Expand All @@ -212,7 +214,10 @@ void bob85_state::bob85(machine_config &config)
config.set_default_layout(layout_bob85);

// devices
CASSETTE(config, m_cass).set_default_state((cassette_state)(CASSETTE_STOPPED | CASSETTE_MOTOR_ENABLED | CASSETTE_SPEAKER_MUTED));
CASSETTE(config, m_cass).set_default_state(CASSETTE_STOPPED | CASSETTE_MOTOR_ENABLED | CASSETTE_SPEAKER_ENABLED);

SPEAKER(config, "mono").front_center();
WAVE(config, "wave", m_cass).add_route(ALL_OUTPUTS, "mono", 0.05);
}

/* ROM definition */
Expand Down
2 changes: 1 addition & 1 deletion src/mame/drivers/c80.cpp
Expand Up @@ -280,7 +280,7 @@ void c80_state::c80(machine_config &config)
m_cassette->set_default_state(CASSETTE_STOPPED | CASSETTE_MOTOR_ENABLED | CASSETTE_SPEAKER_ENABLED);

SPEAKER(config, "mono").front_center();
WAVE(config, "wave", m_cassette).add_route(ALL_OUTPUTS, "mono", 0.25);
WAVE(config, "wave", m_cassette).add_route(ALL_OUTPUTS, "mono", 0.05);

/* internal ram */
RAM(config, RAM_TAG).set_default_size("1K");
Expand Down
2 changes: 2 additions & 0 deletions src/mame/drivers/cgenie.cpp
Expand Up @@ -17,6 +17,7 @@
#include "machine/ram.h"
#include "video/mc6845.h"
#include "sound/ay8910.h"
#include "sound/wave.h"
#include "imagedev/cassette.h"
#include "formats/cgen_cas.h"
#include "bus/rs232/rs232.h"
Expand Down Expand Up @@ -461,6 +462,7 @@ void cgenie_state::cgenie(machine_config &config)
ay8910.port_b_read_callback().set("par", FUNC(cg_parallel_slot_device::pb_r));
ay8910.port_b_write_callback().set("par", FUNC(cg_parallel_slot_device::pb_w));
ay8910.add_route(ALL_OUTPUTS, "mono", 0.75);
WAVE(config, "wave", m_cassette).add_route(ALL_OUTPUTS, "mono", 0.05);

CASSETTE(config, m_cassette);
m_cassette->set_formats(cgenie_cassette_formats);
Expand Down
2 changes: 1 addition & 1 deletion src/mame/drivers/compis.cpp
Expand Up @@ -788,7 +788,7 @@ void compis_state::compis(machine_config &config)
m_rtc->set_day1(1); // monday

CASSETTE(config, m_cassette);
m_cassette->set_default_state((cassette_state)(CASSETTE_STOPPED | CASSETTE_MOTOR_DISABLED | CASSETTE_SPEAKER_MUTED));
m_cassette->set_default_state(CASSETTE_STOPPED | CASSETTE_MOTOR_DISABLED | CASSETTE_SPEAKER_ENABLED);

TIMER(config, "tape").configure_periodic(FUNC(compis_state::tape_tick), attotime::from_hz(44100));

Expand Down
2 changes: 1 addition & 1 deletion src/mame/drivers/comx35.cpp
Expand Up @@ -633,7 +633,7 @@ void comx35_state::base(machine_config &config, const XTAL clock)
quickload_image_device &quickload(QUICKLOAD(config, "quickload"));
quickload.set_handler(snapquick_load_delegate(&QUICKLOAD_LOAD_NAME(comx35_state, comx), this), "comx");

CASSETTE(config, m_cassette).set_default_state((cassette_state) (CASSETTE_STOPPED | CASSETTE_MOTOR_ENABLED | CASSETTE_SPEAKER_ENABLED));
CASSETTE(config, m_cassette).set_default_state(CASSETTE_STOPPED | CASSETTE_MOTOR_ENABLED | CASSETTE_SPEAKER_ENABLED);

// expansion bus
COMX_EXPANSION_SLOT(config, m_exp, 0, comx_expansion_cards, "eb").irq_callback().set(FUNC(comx35_state::irq_w));
Expand Down
5 changes: 3 additions & 2 deletions src/mame/drivers/cosmicos.cpp
Expand Up @@ -42,6 +42,7 @@

#include "screen.h"
#include "speaker.h"
#include "sound/wave.h"

#include "cosmicos.lh"

Expand Down Expand Up @@ -534,8 +535,8 @@ MACHINE_CONFIG_START(cosmicos_state::cosmicos)

/* sound hardware */
SPEAKER(config, "mono").front_center();

SPEAKER_SOUND(config, m_speaker).add_route(ALL_OUTPUTS, "mono", 0.25);
WAVE(config, "wave", m_cassette).add_route(ALL_OUTPUTS, "mono", 0.05);

CDP1864(config, m_cti, 1.75_MHz_XTAL).set_screen(SCREEN_TAG);
m_cti->inlace_cb().set_constant(0);
Expand All @@ -551,7 +552,7 @@ MACHINE_CONFIG_START(cosmicos_state::cosmicos)
/* devices */
MCFG_QUICKLOAD_ADD("quickload", cosmicos_state, cosmicos, "bin")
CASSETTE(config, m_cassette);
m_cassette->set_default_state(CASSETTE_STOPPED | CASSETTE_MOTOR_ENABLED | CASSETTE_SPEAKER_MUTED);
m_cassette->set_default_state(CASSETTE_STOPPED | CASSETTE_MOTOR_ENABLED | CASSETTE_SPEAKER_ENABLED);

/* internal ram */
RAM(config, RAM_TAG).set_default_size("256").set_extra_options("4K,48K");
Expand Down
5 changes: 5 additions & 0 deletions src/mame/drivers/cp1.cpp
Expand Up @@ -17,6 +17,8 @@
#include "machine/i8155.h"
#include "imagedev/cassette.h"
#include "imagedev/snapquik.h"
#include "sound/wave.h"
#include "speaker.h"
#include "cp1.lh"

class cp1_state : public driver_device
Expand Down Expand Up @@ -288,6 +290,9 @@ void cp1_state::cp1(machine_config &config)
config.set_default_layout(layout_cp1);

CASSETTE(config, m_cassette);
m_cassette->set_default_state(CASSETTE_STOPPED | CASSETTE_SPEAKER_ENABLED | CASSETTE_MOTOR_ENABLED);
SPEAKER(config, "mono").front_center();
WAVE(config, "wave", m_cassette).add_route(ALL_OUTPUTS, "mono", 0.05);

QUICKLOAD(config, "quickload").set_handler(snapquick_load_delegate(&QUICKLOAD_LOAD_NAME(cp1_state, quickload), this), "obj", attotime::from_seconds(1));
}
Expand Down

0 comments on commit 7f1a02d

Please sign in to comment.