summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/audio/rax.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/audio/rax.cpp')
-rw-r--r--src/mame/audio/rax.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/audio/rax.cpp b/src/mame/audio/rax.cpp
index 6cc930e221c..97cb5639558 100644
--- a/src/mame/audio/rax.cpp
+++ b/src/mame/audio/rax.cpp
@@ -494,19 +494,19 @@ MACHINE_CONFIG_FRAGMENT( rax )
MACHINE_CONFIG_END
-const device_type ACCLAIM_RAX = device_creator<acclaim_rax_device>;
+DEFINE_DEVICE_TYPE(ACCLAIM_RAX, acclaim_rax_device, "rax_audio", "Acclaim RAX")
//-------------------------------------------------
// acclaim_rax_device - constructor
//-------------------------------------------------
acclaim_rax_device::acclaim_rax_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
- : device_t(mconfig, ACCLAIM_RAX, "Acclaim RAX", tag, owner, clock, "rax_audio", __FILE__),
- m_cpu(*this, "adsp"),
- m_adsp_pram(*this, "adsp_pram"),
- m_adsp_data_bank(*this, "databank"),
- m_data_in(*this, "data_in"),
- m_data_out(*this, "data_out")
+ : device_t(mconfig, ACCLAIM_RAX, tag, owner, clock)
+ , m_cpu(*this, "adsp")
+ , m_adsp_pram(*this, "adsp_pram")
+ , m_adsp_data_bank(*this, "databank")
+ , m_data_in(*this, "data_in")
+ , m_data_out(*this, "data_out")
{
}