blob: 3290040c0ab694def460c9909069275c3acd2164 (
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.cpp
6510 with the full 8 i/o pins at the expense of the NMI and RDY lines.
***************************************************************************/
#include "emu.h"
#include "m6510t.h"
DEFINE_DEVICE_TYPE(M6510T, m6510t_device, "m6510t", "MOS Technology 6510T")
m6510t_device::m6510t_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
m6510_device(mconfig, M6510T, tag, owner, clock)
{
}
|