summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/mc6843.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/mc6843.cpp')
-rw-r--r--src/devices/machine/mc6843.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/mc6843.cpp b/src/devices/machine/mc6843.cpp
index e41aeeaf9d3..597cc7ee865 100644
--- a/src/devices/machine/mc6843.cpp
+++ b/src/devices/machine/mc6843.cpp
@@ -451,7 +451,7 @@ void mc6843_device::device_timer(emu_timer &timer, device_timer_id id, int param
-READ8_MEMBER( mc6843_device::read )
+uint8_t mc6843_device::read(offs_t offset)
{
uint8_t data = 0;
@@ -590,7 +590,7 @@ READ8_MEMBER( mc6843_device::read )
return data;
}
-WRITE8_MEMBER( mc6843_device::write )
+void mc6843_device::write(offs_t offset, uint8_t data)
{
switch ( offset ) {
case 0: /* Data Output Register (DOR) */