summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/adam/ram.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/adam/ram.cpp')
-rw-r--r--src/devices/bus/adam/ram.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/adam/ram.cpp b/src/devices/bus/adam/ram.cpp
index 5f627cd46fc..2a756000dc2 100644
--- a/src/devices/bus/adam/ram.cpp
+++ b/src/devices/bus/adam/ram.cpp
@@ -15,7 +15,7 @@
// DEVICE DEFINITIONS
//**************************************************************************
-const device_type ADAM_RAM = device_creator<adam_ram_expansion_device>;
+DEFINE_DEVICE_TYPE(ADAM_RAM, adam_ram_expansion_device, "adam_ram", "Adam 64KB RAM expansion")
@@ -28,7 +28,7 @@ const device_type ADAM_RAM = device_creator<adam_ram_expansion_device>;
//-------------------------------------------------
adam_ram_expansion_device::adam_ram_expansion_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
- device_t(mconfig, ADAM_RAM, "Adam 64KB RAM expansion", tag, owner, clock, "adam_ram", __FILE__),
+ device_t(mconfig, ADAM_RAM, tag, owner, clock),
device_adam_expansion_slot_card_interface(mconfig, *this),
m_ram(*this, "ram")
{