blob: 88c711df2db49728f8cc756807fe324f3c4ca6a6 (
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
/***************************************************************************
m7501.h
6510 derivative, essentially identical. Also known as the 8501.
***************************************************************************/
#ifndef MAME_CPU_M6502_M7501_H
#define MAME_CPU_M6502_M7501_H
#include "m6510.h"
class m7501_device : public m6510_device {
public:
m7501_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);
};
enum {
M7501_IRQ_LINE = m6502_device::IRQ_LINE,
M7501_NMI_LINE = m6502_device::NMI_LINE
};
DECLARE_DEVICE_TYPE(M7501, m7501_device)
#endif // MAME_CPU_M6502_M7501_H
|