summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/t6a04.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/t6a04.cpp')
-rw-r--r--src/devices/video/t6a04.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/video/t6a04.cpp b/src/devices/video/t6a04.cpp
index f0a843986b7..8b55f8ce153 100644
--- a/src/devices/video/t6a04.cpp
+++ b/src/devices/video/t6a04.cpp
@@ -123,7 +123,7 @@ uint32_t t6a04_device::screen_update(screen_device &screen, bitmap_ind16 &bitmap
return 0;
}
-WRITE8_MEMBER(t6a04_device::control_write)
+void t6a04_device::control_write(uint8_t data)
{
if ((data & 0xc0) == 0xc0) // SCE (set contrast)
{
@@ -168,7 +168,7 @@ WRITE8_MEMBER(t6a04_device::control_write)
}
}
-READ8_MEMBER(t6a04_device::control_read)
+uint8_t t6a04_device::control_read()
{
/*
status read
@@ -184,7 +184,7 @@ READ8_MEMBER(t6a04_device::control_read)
return (m_busy_flag<<7) | (m_word_len<<6) | (m_display_on<<5) | (m_active_counter<<1) | (m_direction == 1 ? 1 : 0);
}
-WRITE8_MEMBER(t6a04_device::data_write)
+void t6a04_device::data_write(uint8_t data)
{
if (m_word_len)
{
@@ -211,7 +211,7 @@ WRITE8_MEMBER(t6a04_device::data_write)
}
-READ8_MEMBER(t6a04_device::data_read)
+uint8_t t6a04_device::data_read()
{
uint8_t data = m_output_reg;
uint8_t output_reg;