summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/ds128x.c
blob: 4ca7b325bf4f7a9a84e1c706afd5d1f6d09d7dfa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// license:???
// 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__)
{
}