blob: f754fc3de893af8076fb039bf53d7963940b4dfc (
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
|
// license:BSD-3-Clause
// copyright-holders:Olivier Galibert
/***************************************************************************
m65sc02.h
Rockwell-class 65c02 with internal static registers, making clock stoppable?
***************************************************************************/
#ifndef __M65SC02_H__
#define __M65SC02_H__
#include "r65c02.h"
class m65sc02_device : public r65c02_device {
public:
m65sc02_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
};
enum {
M65SC02_IRQ_LINE = m6502_device::IRQ_LINE,
M65SC02_NMI_LINE = m6502_device::NMI_LINE,
M65SC02_SET_OVERFLOW = m6502_device::V_LINE
};
extern const device_type M65SC02;
#endif
|