summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/hp_dio/hp98544.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/hp_dio/hp98544.cpp')
-rw-r--r--src/devices/bus/hp_dio/hp98544.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/devices/bus/hp_dio/hp98544.cpp b/src/devices/bus/hp_dio/hp98544.cpp
index 4c211e8778d..ab566822293 100644
--- a/src/devices/bus/hp_dio/hp98544.cpp
+++ b/src/devices/bus/hp_dio/hp98544.cpp
@@ -19,10 +19,9 @@
// GLOBAL VARIABLES
//**************************************************************************
-DEFINE_DEVICE_TYPE_NS(HPDIO_98544, bus::hp_dio, dio16_98544_device, "dio98544", "HP98544 high-res monochrome DIO video card")
+DEFINE_DEVICE_TYPE(HPDIO_98544, bus::hp_dio::dio16_98544_device, "dio98544", "HP98544 high-res monochrome DIO video card")
-namespace bus {
- namespace hp_dio {
+namespace bus::hp_dio {
ROM_START( hp98544 )
ROM_REGION( 0x2000, HP98544_ROM_REGION, 0 )
@@ -139,12 +138,12 @@ void dio16_98544_device::rom_w(offs_t offset, uint16_t data)
}
}
-WRITE_LINE_MEMBER(dio16_98544_device::vblank_w)
+void dio16_98544_device::vblank_w(int state)
{
m_topcat->vblank_w(state);
}
-WRITE_LINE_MEMBER(dio16_98544_device::int_w)
+void dio16_98544_device::int_w(int state)
{
int line = (m_intreg >> 3) & 7;
@@ -186,4 +185,3 @@ uint32_t dio16_98544_device::screen_update(screen_device &screen, bitmap_rgb32 &
}
} // namespace bus::hp_dio
-} // namespace bus