summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/z88/flash.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/z88/flash.cpp')
-rw-r--r--src/devices/bus/z88/flash.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/z88/flash.cpp b/src/devices/bus/z88/flash.cpp
index 752ec937eb9..28a995d86f7 100644
--- a/src/devices/bus/z88/flash.cpp
+++ b/src/devices/bus/z88/flash.cpp
@@ -22,7 +22,7 @@
// DEVICE DEFINITIONS
//**************************************************************************
-const device_type Z88_1024K_FLASH = device_creator<z88_1024k_flash_device>;
+DEFINE_DEVICE_TYPE(Z88_1024K_FLASH, z88_1024k_flash_device, "z88_1024k_flash", "Z88 1024KB Flash")
//-------------------------------------------------
// MACHINE_CONFIG_FRAGMENT( z88_flash )
@@ -42,9 +42,9 @@ MACHINE_CONFIG_END
//-------------------------------------------------
z88_1024k_flash_device::z88_1024k_flash_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
- : device_t(mconfig, Z88_1024K_FLASH, "Z88 1024KB Flash", tag, owner, clock, "z88_1024k_flash", __FILE__),
- device_z88cart_interface( mconfig, *this ),
- m_flash(*this, FLASH_TAG)
+ : device_t(mconfig, Z88_1024K_FLASH, tag, owner, clock)
+ , device_z88cart_interface(mconfig, *this)
+ , m_flash(*this, FLASH_TAG)
{
}