summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/am2847.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/am2847.cpp')
-rw-r--r--src/devices/machine/am2847.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/am2847.cpp b/src/devices/machine/am2847.cpp
index 574ddd81acc..93c288c6b68 100644
--- a/src/devices/machine/am2847.cpp
+++ b/src/devices/machine/am2847.cpp
@@ -9,9 +9,9 @@
#include "emu.h"
#include "am2847.h"
-const device_type AM2847 = &device_creator<am2847_device>;
-const device_type AM2849 = &device_creator<am2849_device>;
-const device_type TMS3409 = &device_creator<tms3409_device>;
+const device_type AM2847 = device_creator<am2847_device>;
+const device_type AM2849 = device_creator<am2849_device>;
+const device_type TMS3409 = device_creator<tms3409_device>;
am2847_base_device::am2847_base_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, uint32_t clock, const char *shortname, size_t size)
: device_t(mconfig, type, name, tag, owner, clock, shortname, __FILE__)