summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/m6502/m6510t.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-09-13 08:41:44 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2015-09-13 08:41:44 +0200
commitf88cefad27a1737c76e09d99c9fb43e173506081 (patch)
tree2d8167d03579c46e226471747eb4407bd00ed6fa /src/emu/cpu/m6502/m6510t.h
parente92ac9e0fa8e99869894bea00589bbb526be30aa (diff)
Move all devices into separate part of src tree (nw)
Diffstat (limited to 'src/emu/cpu/m6502/m6510t.h')
-rw-r--r--src/emu/cpu/m6502/m6510t.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/emu/cpu/m6502/m6510t.h b/src/emu/cpu/m6502/m6510t.h
deleted file mode 100644
index f580ed6aef3..00000000000
--- a/src/emu/cpu/m6502/m6510t.h
+++ /dev/null
@@ -1,34 +0,0 @@
-// 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 __M6510T_H__
-#define __M6510T_H__
-
-#include "m6510.h"
-
-#define MCFG_M6510T_PORT_CALLBACKS(_read, _write) \
- downcast<m6510t_device *>(device)->set_callbacks(DEVCB_##_read, DEVCB_##_write);
-
-#define MCFG_M6510T_PORT_PULLS(_up, _down) \
- downcast<m6510t_device *>(device)->set_pulls(_up, _down);
-
-class m6510t_device : public m6510_device {
-public:
- m6510t_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
-};
-
-enum {
- M6510T_IRQ_LINE = m6502_device::IRQ_LINE,
- M6510T_SET_OVERFLOW = m6502_device::V_LINE
-};
-
-extern const device_type M6510T;
-
-#endif