blob: 20db82b97e94a31f0760c67ec7087dfca0bf9e09 (
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
27
28
|
// license:BSD-3-Clause
// copyright-holders:Olivier Galibert
/***************************************************************************
m6510t.h
6510 with the full 8 i/o pins at the expense of the NMI and RDY lines.
***************************************************************************/
#ifndef MAME_CPU_M6502_M6510T_H
#define MAME_CPU_M6502_M6510T_H
#include "m6510.h"
class m6510t_device : public m6510_device {
public:
m6510t_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
};
enum {
M6510T_IRQ_LINE = m6502_device::IRQ_LINE,
M6510T_SET_OVERFLOW = m6502_device::V_LINE
};
DECLARE_DEVICE_TYPE(M6510T, m6510t_device)
#endif // MAME_CPU_M6502_M6510T_H
|