summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/cp1610/cp1610.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/cp1610/cp1610.cpp')
-rw-r--r--src/devices/cpu/cp1610/cp1610.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/cpu/cp1610/cp1610.cpp b/src/devices/cpu/cp1610/cp1610.cpp
index 60ba26c1e36..edaa32795e8 100644
--- a/src/devices/cpu/cp1610/cp1610.cpp
+++ b/src/devices/cpu/cp1610/cp1610.cpp
@@ -14,11 +14,11 @@
*****************************************************************************/
#include "emu.h"
-#include "debugger.h"
#include "cp1610.h"
+#include "debugger.h"
-const device_type CP1610 = device_creator<cp1610_cpu_device>;
+DEFINE_DEVICE_TYPE(CP1610, cp1610_cpu_device, "cp1610", "GI CP1610")
#define S 0x80
@@ -3395,7 +3395,7 @@ void cp1610_cpu_device::execute_set_input(int irqline, int state)
cp1610_cpu_device::cp1610_cpu_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
- : cpu_device(mconfig, CP1610, "CP1610", tag, owner, clock, "cp1610", __FILE__)
+ : cpu_device(mconfig, CP1610, tag, owner, clock)
, m_program_config("program", ENDIANNESS_BIG, 16, 16, -1)
, m_read_bext(*this)
{