summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/c64/cpm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/c64/cpm.cpp')
-rw-r--r--src/devices/bus/c64/cpm.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/c64/cpm.cpp b/src/devices/bus/c64/cpm.cpp
index 8544938255a..c18d0eff286 100644
--- a/src/devices/bus/c64/cpm.cpp
+++ b/src/devices/bus/c64/cpm.cpp
@@ -33,7 +33,7 @@
// DEVICE DEFINITIONS
//**************************************************************************
-const device_type C64_CPM = device_creator<c64_cpm_cartridge_device>;
+DEFINE_DEVICE_TYPE(C64_CPM, c64_cpm_cartridge_device, "c64_cpm", "C64 CP/M cartridge")
//-------------------------------------------------
@@ -131,7 +131,7 @@ inline void c64_cpm_cartridge_device::update_signals()
//-------------------------------------------------
c64_cpm_cartridge_device::c64_cpm_cartridge_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
- device_t(mconfig, C64_CPM, "C64 CP/M cartridge", tag, owner, clock, "c64_cpm", __FILE__),
+ device_t(mconfig, C64_CPM, tag, owner, clock),
device_c64_expansion_card_interface(mconfig, *this),
m_maincpu(*this, Z80_TAG),
m_enabled(0),