summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/tms6100.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/tms6100.cpp')
-rw-r--r--src/devices/machine/tms6100.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/tms6100.cpp b/src/devices/machine/tms6100.cpp
index eade390ffee..2ffc32d1638 100644
--- a/src/devices/machine/tms6100.cpp
+++ b/src/devices/machine/tms6100.cpp
@@ -26,7 +26,7 @@
// device definitions
-const device_type TMS6100 = &device_creator<tms6100_device>;
+const device_type TMS6100 = device_creator<tms6100_device>;
tms6100_device::tms6100_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, u32 clock, const char *shortname, const char *source)
: device_t(mconfig, type, name, tag, owner, clock, shortname, source),
@@ -44,7 +44,7 @@ tms6100_device::tms6100_device(const machine_config &mconfig, const char *tag, d
{
}
-const device_type M58819 = &device_creator<m58819_device>;
+const device_type M58819 = device_creator<m58819_device>;
m58819_device::m58819_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock)
: tms6100_device(mconfig, M58819, "M58819S", tag, owner, clock, "m58819s", __FILE__)