summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/hp_dio/hp98643.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/hp_dio/hp98643.cpp')
-rw-r--r--src/devices/bus/hp_dio/hp98643.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/devices/bus/hp_dio/hp98643.cpp b/src/devices/bus/hp_dio/hp98643.cpp
index 7d5cc557e71..1d8934f739a 100644
--- a/src/devices/bus/hp_dio/hp98643.cpp
+++ b/src/devices/bus/hp_dio/hp98643.cpp
@@ -13,9 +13,9 @@
//#define VERBOSE 1
#include "logmacro.h"
-DEFINE_DEVICE_TYPE_NS(HPDIO_98643, bus::hp_dio, dio16_98643_device, "dio98643", "HP98643A LANIC Ethernet card")
+DEFINE_DEVICE_TYPE(HPDIO_98643, bus::hp_dio::dio16_98643_device, "dio98643", "HP98643A LANIC Ethernet card")
-namespace bus { namespace hp_dio {
+namespace bus::hp_dio {
void dio16_98643_device::device_add_mconfig(machine_config &config)
{
@@ -114,7 +114,7 @@ void dio16_98643_device::device_reset()
m_sc |= get_irq_line() << 4;
}
-WRITE_LINE_MEMBER(dio16_98643_device::lance_int_w)
+void dio16_98643_device::lance_int_w(int state)
{
if (state)
m_sc &= ~REG_SC_IP;
@@ -213,4 +213,3 @@ void dio16_98643_device::addrmap(address_map &map)
}
} // namespace bus::hp_dio
-} // namespace bus