diff options
Diffstat (limited to 'src/mame/machine/wpc.cpp')
-rw-r--r-- | src/mame/machine/wpc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/wpc.cpp b/src/mame/machine/wpc.cpp index b959966164e..4a4dbea06a0 100644 --- a/src/mame/machine/wpc.cpp +++ b/src/mame/machine/wpc.cpp @@ -11,10 +11,10 @@ #define LOG_WPC (0) -const device_type WPCASIC = device_creator<wpc_device>; +DEFINE_DEVICE_TYPE(WPCASIC, wpc_device, "wpc", "Williams WPC ASIC") wpc_device::wpc_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) - : device_t(mconfig,WPCASIC,"Williams WPC ASIC",tag,owner,clock, "wpc", __FILE__), + : device_t(mconfig, WPCASIC, tag, owner, clock), m_dmd_visiblepage(0), m_irq_cb(*this), m_firq_cb(*this), |