summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/scv/rom.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/scv/rom.cpp')
-rw-r--r--src/devices/bus/scv/rom.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/devices/bus/scv/rom.cpp b/src/devices/bus/scv/rom.cpp
index ccf05a85d94..a4e42cf46fb 100644
--- a/src/devices/bus/scv/rom.cpp
+++ b/src/devices/bus/scv/rom.cpp
@@ -17,13 +17,13 @@
// scv_rom_device - constructor
//-------------------------------------------------
-const device_type SCV_ROM8K = &device_creator<scv_rom8_device>;
-const device_type SCV_ROM16K = &device_creator<scv_rom16_device>;
-const device_type SCV_ROM32K = &device_creator<scv_rom32_device>;
-const device_type SCV_ROM32K_RAM8K = &device_creator<scv_rom32ram8_device>;
-const device_type SCV_ROM64K = &device_creator<scv_rom64_device>;
-const device_type SCV_ROM128K = &device_creator<scv_rom128_device>;
-const device_type SCV_ROM128K_RAM4K = &device_creator<scv_rom128ram4_device>;
+const device_type SCV_ROM8K = device_creator<scv_rom8_device>;
+const device_type SCV_ROM16K = device_creator<scv_rom16_device>;
+const device_type SCV_ROM32K = device_creator<scv_rom32_device>;
+const device_type SCV_ROM32K_RAM8K = device_creator<scv_rom32ram8_device>;
+const device_type SCV_ROM64K = device_creator<scv_rom64_device>;
+const device_type SCV_ROM128K = device_creator<scv_rom128_device>;
+const device_type SCV_ROM128K_RAM4K = device_creator<scv_rom128ram4_device>;
scv_rom8_device::scv_rom8_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, uint32_t clock, const char *shortname, const char *source)