summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/c64/dela_ep64.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/c64/dela_ep64.cpp')
-rw-r--r--src/devices/bus/c64/dela_ep64.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/c64/dela_ep64.cpp b/src/devices/bus/c64/dela_ep64.cpp
index 65c371a1f8f..b6812f20bf5 100644
--- a/src/devices/bus/c64/dela_ep64.cpp
+++ b/src/devices/bus/c64/dela_ep64.cpp
@@ -15,7 +15,7 @@
// DEVICE DEFINITIONS
//**************************************************************************
-const device_type C64_DELA_EP64 = device_creator<c64_dela_ep64_cartridge_device>;
+DEFINE_DEVICE_TYPE(C64_DELA_EP64, c64_dela_ep64_cartridge_device, "c64_dela_ep64", "C64 Rex 64KB EPROM cartridge")
//-------------------------------------------------
@@ -50,7 +50,7 @@ machine_config_constructor c64_dela_ep64_cartridge_device::device_mconfig_additi
//-------------------------------------------------
c64_dela_ep64_cartridge_device::c64_dela_ep64_cartridge_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
- device_t(mconfig, C64_DELA_EP64, "C64 Rex 64KB EPROM cartridge", tag, owner, clock, "c64_dela_ep64", __FILE__),
+ device_t(mconfig, C64_DELA_EP64, tag, owner, clock),
device_c64_expansion_card_interface(mconfig, *this),
m_eprom1(*this, "eprom1"),
m_eprom2(*this, "eprom2"), m_bank(0), m_reset(0), m_rom0_ce(0), m_rom1_ce(0), m_rom2_ce(0)