summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/ymopz.cpp
blob: c503592dfd1c2749f04d98b6fddc00b0c2411d7a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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, const XTAL &clock) :
	ymfm_device_base<ymfm::ym2414>(mconfig, tag, owner, clock, YM2414)
{
}