blob: 037dc7a7c87da239f5617d96594fd473cc6fa9ea (
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
29
30
|
// license:BSD-3-Clause
// copyright-holders:Olivier Galibert
/***************************************************************************
m6507.h
MOS Technology 6502, NMOS variant with reduced address bus
***************************************************************************/
#ifndef MAME_CPU_M6502_M6507_H
#define MAME_CPU_M6502_M6507_H
#include "m6502.h"
class m6507_device : public m6502_device {
public:
m6507_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);
};
enum {
M6507_IRQ_LINE = m6502_device::IRQ_LINE,
M6507_NMI_LINE = m6502_device::NMI_LINE,
M6507_SET_OVERFLOW = m6502_device::V_LINE
};
DECLARE_DEVICE_TYPE(M6507, m6507_device)
#endif // MAME_CPU_M6502_M6507_H
|