summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/m6502/m65sc02.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/m6502/m65sc02.h')
-rw-r--r--src/devices/cpu/m6502/m65sc02.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/devices/cpu/m6502/m65sc02.h b/src/devices/cpu/m6502/m65sc02.h
deleted file mode 100644
index 686411c0b22..00000000000
--- a/src/devices/cpu/m6502/m65sc02.h
+++ /dev/null
@@ -1,29 +0,0 @@
-// license:BSD-3-Clause
-// copyright-holders:Olivier Galibert
-/***************************************************************************
-
- m65sc02.h
-
- Rockwell-class 65c02 with internal static registers, making clock stoppable?
-
-***************************************************************************/
-
-#ifndef MAME_CPU_M6502_M65SC02_H
-#define MAME_CPU_M6502_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_t clock);
-};
-
-enum {
- M65SC02_IRQ_LINE = m6502_device::IRQ_LINE,
- M65SC02_NMI_LINE = m6502_device::NMI_LINE,
- M65SC02_SET_OVERFLOW = m6502_device::V_LINE
-};
-
-DECLARE_DEVICE_TYPE(M65SC02, m65sc02_device)
-
-#endif // MAME_CPU_M6502_M65SC02_H