summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/centronics/digiblst.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/centronics/digiblst.cpp')
-rw-r--r--src/devices/bus/centronics/digiblst.cpp63
1 files changed, 63 insertions, 0 deletions
diff --git a/src/devices/bus/centronics/digiblst.cpp b/src/devices/bus/centronics/digiblst.cpp
new file mode 100644
index 00000000000..9fdbfd5c279
--- /dev/null
+++ b/src/devices/bus/centronics/digiblst.cpp
@@ -0,0 +1,63 @@
+// license:BSD-3-Clause
+// copyright-holders:Barry Rodewald
+/*
+ * digiblst.c
+ *
+ * Created on: 23/08/2014
+ */
+
+#include "emu.h"
+#include "sound/dac.h"
+#include "digiblst.h"
+
+//**************************************************************************
+// COVOX DEVICE
+//**************************************************************************
+
+// device type definition
+const device_type CENTRONICS_DIGIBLASTER = &device_creator<centronics_digiblaster_device>;
+
+static MACHINE_CONFIG_FRAGMENT( digiblst )
+ /* sound hardware */
+ MCFG_SPEAKER_STANDARD_MONO("mono")
+
+ MCFG_SOUND_ADD("dac", DAC, 0)
+ MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)
+MACHINE_CONFIG_END
+
+
+/***************************************************************************
+ IMPLEMENTATION
+***************************************************************************/
+//-------------------------------------------------
+// centronics_covox_device - constructor
+//-------------------------------------------------
+
+centronics_digiblaster_device::centronics_digiblaster_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
+ : device_t(mconfig, CENTRONICS_DIGIBLASTER, "Digiblaster (DIY)", tag, owner, clock, "digiblst", __FILE__),
+ device_centronics_peripheral_interface( mconfig, *this ),
+ m_dac(*this, "dac"),
+ m_data(0)
+{
+}
+
+//-------------------------------------------------
+// machine_config_additions - device-specific
+// machine configurations
+//-------------------------------------------------
+
+machine_config_constructor centronics_digiblaster_device::device_mconfig_additions() const
+{
+ return MACHINE_CONFIG_NAME( digiblst );
+}
+
+void centronics_digiblaster_device::device_start()
+{
+ save_item(NAME(m_data));
+}
+
+void centronics_digiblaster_device::update_dac()
+{
+ if (started())
+ m_dac->write_unsigned8(m_data);
+}