blob: ad050d22a4c870babb52189b73acb4300e1c9718 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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();
}
|