summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/lc89510.c
blob: 8ce3988009dbd3181b5cff07ba6c49d1189b4c16 (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
24
25
26
/* LC89510 CD Controller
 based off old NeoCD emulator code, adapted to SegaCD, needs reworking to work with NeoCD again

*/


#include "emu.h"
#include "lc89510.h"

const device_type LC89510 = &device_creator<lc89510_device>;

lc89510_device::lc89510_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
	: device_t(mconfig, LC89510, "lc89510_device", tag, owner, clock)
{
}


void lc89510_device::device_start()
{

}

void lc89510_device::device_reset()
{

}