summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/m6502/m7501.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-11-08 12:56:12 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2015-11-08 12:56:12 +0100
commit7c19aac60e12d6f5ea301bdb34d7826a01e0b06f (patch)
treef310d86aa2c6bfc19d115307dedde4eb0cd52dad /src/devices/cpu/m6502/m7501.cpp
parenta57b46ae933badd7441ce1644711dbb851e2b504 (diff)
Rename *.c -> *.cpp in our source (nw)
Diffstat (limited to 'src/devices/cpu/m6502/m7501.cpp')
-rw-r--r--src/devices/cpu/m6502/m7501.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/devices/cpu/m6502/m7501.cpp b/src/devices/cpu/m6502/m7501.cpp
new file mode 100644
index 00000000000..83bc290a172
--- /dev/null
+++ b/src/devices/cpu/m6502/m7501.cpp
@@ -0,0 +1,19 @@
+// license:BSD-3-Clause
+// copyright-holders:Olivier Galibert
+/***************************************************************************
+
+ m7501.c
+
+ 6510 derivative, essentially identical. Also known as the 8501.
+
+***************************************************************************/
+
+#include "emu.h"
+#include "m7501.h"
+
+const device_type M7501 = &device_creator<m7501_device>;
+
+m7501_device::m7501_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
+ m6510_device(mconfig, M7501, "M7501", tag, owner, clock, "m7501", __FILE__)
+{
+}