summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/m6502/m7501.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/m6502/m7501.cpp')
-rw-r--r--src/devices/cpu/m6502/m7501.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/m6502/m7501.cpp b/src/devices/cpu/m6502/m7501.cpp
index 826ae10ad15..912a7a023dd 100644
--- a/src/devices/cpu/m6502/m7501.cpp
+++ b/src/devices/cpu/m6502/m7501.cpp
@@ -11,9 +11,9 @@
#include "emu.h"
#include "m7501.h"
-const device_type M7501 = device_creator<m7501_device>;
+DEFINE_DEVICE_TYPE(M7501, m7501_device, "m7501", "M7501")
m7501_device::m7501_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
- m6510_device(mconfig, M7501, "M7501", tag, owner, clock, "m7501", __FILE__)
+ m6510_device(mconfig, M7501, tag, owner, clock)
{
}