summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/beep.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/beep.cpp')
-rw-r--r--src/devices/sound/beep.cpp13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/devices/sound/beep.cpp b/src/devices/sound/beep.cpp
index 58096c4b561..47f4701a662 100644
--- a/src/devices/sound/beep.cpp
+++ b/src/devices/sound/beep.cpp
@@ -2,15 +2,13 @@
// copyright-holders:Kevin Thacker
/***************************************************************************
- beep.c
+ Simple beeper sound driver
This is used for computers/systems which can only output a constant tone.
This tone can be turned on and off.
e.g. PCW and PCW16 computer systems
KT - 25-Jun-2000
- Sound handler
-
****************************************************************************/
#include "emu.h"
@@ -22,15 +20,6 @@
// device type definition
DEFINE_DEVICE_TYPE(BEEP, beep_device, "beep", "Beep")
-
-//**************************************************************************
-// LIVE DEVICE
-//**************************************************************************
-
-//-------------------------------------------------
-// beep_device - constructor
-//-------------------------------------------------
-
beep_device::beep_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, BEEP, tag, owner, clock)
, device_sound_interface(mconfig, *this)