summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/ds128x.c
blob: a3e560c569264cf45b3ffaf12e5cf111baadbf16 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// license:MAME
// copyright-holders:smf
#include "ds128x.h"

/// TODO: Only DV2/DV1/DV0 == 0/1/0 is supported as the chip only has a 15 stage divider and not 22.

const device_type DS12885 = &device_creator<ds12885_device>;

//-------------------------------------------------
//  ds12885_device - constructor
//-------------------------------------------------

ds12885_device::ds12885_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
	: mc146818_device(mconfig, DS12885, "DS12885", tag, owner, clock, "ds12885", __FILE__)
{
}