summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/devcpu.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/emu/devcpu.cpp
parenta57b46ae933badd7441ce1644711dbb851e2b504 (diff)
Rename *.c -> *.cpp in our source (nw)
Diffstat (limited to 'src/emu/devcpu.cpp')
-rw-r--r--src/emu/devcpu.cpp40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/emu/devcpu.cpp b/src/emu/devcpu.cpp
new file mode 100644
index 00000000000..d67752d68a6
--- /dev/null
+++ b/src/emu/devcpu.cpp
@@ -0,0 +1,40 @@
+// license:BSD-3-Clause
+// copyright-holders:Aaron Giles
+/***************************************************************************
+
+ devcpu.c
+
+ CPU device definitions.
+
+***************************************************************************/
+
+#include "emu.h"
+#include "debugger.h"
+#include <ctype.h>
+
+
+//**************************************************************************
+// CPU RUNNING DEVICE
+//**************************************************************************
+
+//-------------------------------------------------
+// cpu_device - constructor
+//-------------------------------------------------
+
+cpu_device::cpu_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source)
+ : device_t(mconfig, type, name, tag, owner, clock, shortname, source),
+ device_execute_interface(mconfig, *this),
+ device_memory_interface(mconfig, *this),
+ device_state_interface(mconfig, *this),
+ device_disasm_interface(mconfig, *this)
+{
+}
+
+
+//-------------------------------------------------
+// cpu_device - destructor
+//-------------------------------------------------
+
+cpu_device::~cpu_device()
+{
+}