diff options
Diffstat (limited to 'src/devices/bus/samcoupe/expansion/blue_sampler.cpp')
-rw-r--r-- | src/devices/bus/samcoupe/expansion/blue_sampler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/samcoupe/expansion/blue_sampler.cpp b/src/devices/bus/samcoupe/expansion/blue_sampler.cpp index 9a70d3cac3d..c31e1274c29 100644 --- a/src/devices/bus/samcoupe/expansion/blue_sampler.cpp +++ b/src/devices/bus/samcoupe/expansion/blue_sampler.cpp @@ -31,7 +31,7 @@ void sam_blue_sound_sampler_device::device_add_mconfig(machine_config &config) m_ppi->out_pb_callback().set(FUNC(sam_blue_sound_sampler_device::ppi_portb_w)); m_ppi->in_pc_callback().set(FUNC(sam_blue_sound_sampler_device::ppi_portc_r)); - ZN426E(config, m_dac, 0).add_route(ALL_OUTPUTS, "mono", 0.5); + ZN426E(config, m_dac).add_route(ALL_OUTPUTS, "mono", 0.5); // TODO: ZN449E ADC @@ -48,7 +48,7 @@ void sam_blue_sound_sampler_device::device_add_mconfig(machine_config &config) // sam_blue_sound_sampler_device - constructor //------------------------------------------------- -sam_blue_sound_sampler_device::sam_blue_sound_sampler_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : +sam_blue_sound_sampler_device::sam_blue_sound_sampler_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : device_t(mconfig, SAM_BLUE_SOUND_SAMPLER, tag, owner, clock), device_samcoupe_expansion_interface(mconfig, *this), m_ppi(*this, "ppi"), |