summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/m6502/m8502.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/m6502/m8502.cpp')
-rw-r--r--src/devices/cpu/m6502/m8502.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/devices/cpu/m6502/m8502.cpp b/src/devices/cpu/m6502/m8502.cpp
new file mode 100644
index 00000000000..a967d03d74c
--- /dev/null
+++ b/src/devices/cpu/m6502/m8502.cpp
@@ -0,0 +1,19 @@
+// license:BSD-3-Clause
+// copyright-holders:Olivier Galibert
+/***************************************************************************
+
+ m8502.c
+
+ 6510 derivative, capable of running at 2MHz.
+
+***************************************************************************/
+
+#include "emu.h"
+#include "m8502.h"
+
+const device_type M8502 = &device_creator<m8502_device>;
+
+m8502_device::m8502_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
+ m6510_device(mconfig, M8502, "M8502", tag, owner, clock, "m8502", __FILE__)
+{
+}