blob: e3ac1c14db1b6fe2bb09769bdde63634dc795d7f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// license:BSD-3-Clause
// copyright-holders:Olivier Galibert
/***************************************************************************
m6510t.c
6510 with the full 8 i/o pins at the expense of the NMI and RDY lines.
***************************************************************************/
#include "emu.h"
#include "m6510t.h"
const device_type M6510T = &device_creator<m6510t_device>;
m6510t_device::m6510t_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock) :
m6510_device(mconfig, M6510T, "M6510T", tag, owner, clock, "m6510t", __FILE__)
{
}
|