summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/ymopz.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/ymopz.cpp')
-rw-r--r--src/devices/sound/ymopz.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/devices/sound/ymopz.cpp b/src/devices/sound/ymopz.cpp
new file mode 100644
index 00000000000..cf629cb7779
--- /dev/null
+++ b/src/devices/sound/ymopz.cpp
@@ -0,0 +1,22 @@
+// license:BSD-3-Clause
+// copyright-holders:Aaron Giles
+
+#include "emu.h"
+#include "ymopz.h"
+
+
+DEFINE_DEVICE_TYPE(YM2414, ym2414_device, "ym2414", "YM2414 OPZ")
+
+
+//*********************************************************
+// YM2414 DEVICE
+//*********************************************************
+
+//-------------------------------------------------
+// ym2414_device - constructor
+//-------------------------------------------------
+
+ym2414_device::ym2414_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
+ ymfm_device_base<ymfm::ym2414>(mconfig, tag, owner, clock, YM2414)
+{
+}