summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/isa/3c503.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/isa/3c503.cpp')
-rw-r--r--src/devices/bus/isa/3c503.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/bus/isa/3c503.cpp b/src/devices/bus/isa/3c503.cpp
index 21172ea6ecf..baeed57b6d7 100644
--- a/src/devices/bus/isa/3c503.cpp
+++ b/src/devices/bus/isa/3c503.cpp
@@ -12,17 +12,17 @@ static MACHINE_CONFIG_FRAGMENT(el2_3c503_config)
MCFG_DP8390D_MEM_WRITE_CB(WRITE8(el2_3c503_device, el2_3c503_mem_write))
MACHINE_CONFIG_END
-const device_type EL2_3C503 = device_creator<el2_3c503_device>;
+DEFINE_DEVICE_TYPE(EL2_3C503, el2_3c503_device, "el2_3c503", "3C503 Network Adapter")
machine_config_constructor el2_3c503_device::device_mconfig_additions() const {
return MACHINE_CONFIG_NAME(el2_3c503_config);
}
el2_3c503_device::el2_3c503_device(const machine_config& mconfig, const char* tag, device_t* owner, uint32_t clock)
- : device_t(mconfig, EL2_3C503, "3C503 Network Adapter", tag, owner, clock, "el2_3c503", __FILE__),
- device_isa8_card_interface(mconfig, *this),
- m_dp8390(*this, "dp8390d"),
- m_irq_state(0)
+ : device_t(mconfig, EL2_3C503, tag, owner, clock)
+ , device_isa8_card_interface(mconfig, *this)
+ , m_dp8390(*this, "dp8390d")
+ , m_irq_state(0)
{
}