diff options
Diffstat (limited to 'src/devices/bus/pci/ds2416.cpp')
-rw-r--r-- | src/devices/bus/pci/ds2416.cpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/devices/bus/pci/ds2416.cpp b/src/devices/bus/pci/ds2416.cpp new file mode 100644 index 00000000000..ad050d22a4c --- /dev/null +++ b/src/devices/bus/pci/ds2416.cpp @@ -0,0 +1,23 @@ +// license:BSD-3-Clause +// copyright-holders:Olivier Galibert + +#include "emu.h" +#include "ds2416.h" + +DEFINE_DEVICE_TYPE(DS2416, ds2416_device, "ds2416", "Yamaha DS2416") + +ds2416_device::ds2416_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) + : ymp21_device(mconfig, DS2416, tag, owner, clock) +{ + set_ids(0x10732000, 0x00, 0x040100, 0x10732000); +} + +void ds2416_device::device_start() +{ + ymp21_device::device_start(); +} + +void ds2416_device::device_reset() +{ + ymp21_device::device_reset(); +} |