summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/vc4000/rom.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/vc4000/rom.cpp')
-rw-r--r--src/devices/bus/vc4000/rom.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/vc4000/rom.cpp b/src/devices/bus/vc4000/rom.cpp
index ef5289abe0f..0f6f0865099 100644
--- a/src/devices/bus/vc4000/rom.cpp
+++ b/src/devices/bus/vc4000/rom.cpp
@@ -192,10 +192,10 @@
// vc4000_rom_device - constructor
//-------------------------------------------------
-const device_type VC4000_ROM_STD = &device_creator<vc4000_rom_device>;
-const device_type VC4000_ROM_ROM4K = &device_creator<vc4000_rom4k_device>;
-const device_type VC4000_ROM_RAM1K = &device_creator<vc4000_ram1k_device>;
-const device_type VC4000_ROM_CHESS2 = &device_creator<vc4000_chess2_device>;
+const device_type VC4000_ROM_STD = device_creator<vc4000_rom_device>;
+const device_type VC4000_ROM_ROM4K = device_creator<vc4000_rom4k_device>;
+const device_type VC4000_ROM_RAM1K = device_creator<vc4000_ram1k_device>;
+const device_type VC4000_ROM_CHESS2 = device_creator<vc4000_chess2_device>;
vc4000_rom_device::vc4000_rom_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)