summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/nes/rexsoft.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/nes/rexsoft.cpp')
-rw-r--r--src/devices/bus/nes/rexsoft.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/devices/bus/nes/rexsoft.cpp b/src/devices/bus/nes/rexsoft.cpp
index 9aaaed7721b..300bd07f96e 100644
--- a/src/devices/bus/nes/rexsoft.cpp
+++ b/src/devices/bus/nes/rexsoft.cpp
@@ -35,19 +35,19 @@
// constructor
//-------------------------------------------------
-const device_type NES_REX_DBZ5 = device_creator<nes_rex_dbz5_device>;
-const device_type NES_REX_SL1632 = device_creator<nes_rex_sl1632_device>;
+DEFINE_DEVICE_TYPE(NES_REX_DBZ5, nes_rex_dbz5_device, "nes_rex_dbz5", "NES Cart Rex Soft DragonBall Z V PCB")
+DEFINE_DEVICE_TYPE(NES_REX_SL1632, nes_rex_sl1632_device, "nes_rex_sl1632", "NES Cart Rex Soft SL-1632 PCB")
nes_rex_dbz5_device::nes_rex_dbz5_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
- : nes_txrom_device(mconfig, NES_REX_DBZ5, "NES Cart Rex Soft DragonBall Z V PCB", tag, owner, clock, "nes_rex_dbz5", __FILE__),
- m_extra(0)
- {
+ : nes_txrom_device(mconfig, NES_REX_DBZ5, tag, owner, clock)
+ , m_extra(0)
+{
}
nes_rex_sl1632_device::nes_rex_sl1632_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
- : nes_txrom_device(mconfig, NES_REX_SL1632, "NES Cart Rex Soft SL-1632 PCB", tag, owner, clock, "nes_rex_sl1632", __FILE__), m_mode(0), m_mirror(0)
- {
+ : nes_txrom_device(mconfig, NES_REX_SL1632, tag, owner, clock), m_mode(0), m_mirror(0)
+{
}