summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/c64/supercpu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/c64/supercpu.cpp')
-rw-r--r--src/devices/bus/c64/supercpu.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/c64/supercpu.cpp b/src/devices/bus/c64/supercpu.cpp
index 256a184664b..cedd3057f6f 100644
--- a/src/devices/bus/c64/supercpu.cpp
+++ b/src/devices/bus/c64/supercpu.cpp
@@ -22,7 +22,7 @@
// DEVICE DEFINITIONS
//**************************************************************************
-const device_type C64_SUPERCPU = device_creator<c64_supercpu_device>;
+DEFINE_DEVICE_TYPE(C64_SUPERCPU, c64_supercpu_device, "c64_supercpu", "C64 SuperCPU v2 + SuperRAM")
//-------------------------------------------------
@@ -120,7 +120,7 @@ ioport_constructor c64_supercpu_device::device_input_ports() const
//-------------------------------------------------
c64_supercpu_device::c64_supercpu_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
- device_t(mconfig, C64_SUPERCPU, "SuperCPU", tag, owner, clock, "c64_supercpu", __FILE__),
+ device_t(mconfig, C64_SUPERCPU, tag, owner, clock),
device_c64_expansion_card_interface(mconfig, *this),
m_maincpu(*this, G65816_TAG),
m_exp(*this, C64_EXPANSION_SLOT_TAG),