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.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/m6502/m8502.cpp b/src/devices/cpu/m6502/m8502.cpp
index 897bd3e00e2..75a4a2f7b25 100644
--- a/src/devices/cpu/m6502/m8502.cpp
+++ b/src/devices/cpu/m6502/m8502.cpp
@@ -11,9 +11,9 @@
#include "emu.h"
#include "m8502.h"
-const device_type M8502 = device_creator<m8502_device>;
+DEFINE_DEVICE_TYPE(M8502, m8502_device, "m8502", "M8502")
m8502_device::m8502_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
- m6510_device(mconfig, M8502, "M8502", tag, owner, clock, "m8502", __FILE__)
+ m6510_device(mconfig, M8502, tag, owner, clock)
{
}