diff options
Diffstat (limited to 'src/devices/bus/centronics/digiblst.cpp')
-rw-r--r-- | src/devices/bus/centronics/digiblst.cpp | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/devices/bus/centronics/digiblst.cpp b/src/devices/bus/centronics/digiblst.cpp index 97a37054172..3b66d35b9df 100644 --- a/src/devices/bus/centronics/digiblst.cpp +++ b/src/devices/bus/centronics/digiblst.cpp @@ -1,29 +1,28 @@ // license:BSD-3-Clause // copyright-holders:Barry Rodewald /* - * digiblst.c + * digiblst.cpp * * Created on: 23/08/2014 */ #include "emu.h" #include "digiblst.h" -#include "sound/volt_reg.h" #include "speaker.h" //************************************************************************** -// COVOX DEVICE +// DIGIBLASTER DEVICE //************************************************************************** // device type definition -DEFINE_DEVICE_TYPE(CENTRONICS_DIGIBLASTER, centronics_digiblaster_device, "digiblst", "Digiblaster (DIY)") +DEFINE_DEVICE_TYPE(CENTRONICS_DIGIBLASTER, centronics_digiblaster_device, "cpcdigiblst", "Digiblaster (DIY)") /*************************************************************************** IMPLEMENTATION ***************************************************************************/ //------------------------------------------------- -// centronics_covox_device - constructor +// centronics_digiblaster_device - constructor //------------------------------------------------- centronics_digiblaster_device::centronics_digiblaster_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) @@ -43,9 +42,6 @@ void centronics_digiblaster_device::device_add_mconfig(machine_config &config) /* sound hardware */ SPEAKER(config, "speaker").front_center(); DAC_8BIT_R2R(config, m_dac, 0).add_route(ALL_OUTPUTS, "speaker", 0.5); // unknown DAC - voltage_regulator_device &vref(VOLTAGE_REGULATOR(config, "vref")); - vref.add_route(0, "dac", 1.0, DAC_VREF_POS_INPUT); - vref.add_route(0, "dac", -1.0, DAC_VREF_NEG_INPUT); } void centronics_digiblaster_device::device_start() |