summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/n64.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/n64.cpp')
-rw-r--r--src/mame/machine/n64.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/n64.cpp b/src/mame/machine/n64.cpp
index dcf424d69c9..52eaa42d1c2 100644
--- a/src/mame/machine/n64.cpp
+++ b/src/mame/machine/n64.cpp
@@ -10,10 +10,10 @@
#include "video/n64.h"
// device type definition
-const device_type N64PERIPH = device_creator<n64_periphs>;
+DEFINE_DEVICE_TYPE(N64PERIPH, n64_periphs, "n64_periphs", "N64 Peripheral Chips")
n64_periphs::n64_periphs(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
- : device_t(mconfig, N64PERIPH, "N64 Periphal Chips", tag, owner, clock, "n64_periphs", __FILE__)
+ : device_t(mconfig, N64PERIPH, tag, owner, clock)
, device_video_interface(mconfig, *this)
, m_nvram_image(nullptr)
, dd_present(false)