summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/pet/superpet.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/pet/superpet.cpp')
-rw-r--r--src/devices/bus/pet/superpet.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/pet/superpet.cpp b/src/devices/bus/pet/superpet.cpp
index 77a9f65cad0..87783f39d41 100644
--- a/src/devices/bus/pet/superpet.cpp
+++ b/src/devices/bus/pet/superpet.cpp
@@ -28,7 +28,7 @@
// DEVICE DEFINITIONS
//**************************************************************************
-const device_type SUPERPET = device_creator<superpet_device>;
+DEFINE_DEVICE_TYPE(SUPERPET, superpet_device, "pet_superpet", "Commodore SuperPET")
//-------------------------------------------------
@@ -176,7 +176,7 @@ inline bool superpet_device::is_ram_writable()
//-------------------------------------------------
superpet_device::superpet_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
- device_t(mconfig, SUPERPET, "SuperPET", tag, owner, clock, "pet_superpet", __FILE__),
+ device_t(mconfig, SUPERPET, tag, owner, clock),
device_pet_expansion_card_interface(mconfig, *this),
m_maincpu(*this, M6809_TAG),
m_acia(*this, MOS6551_TAG),