summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tv950.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tv950.cpp')
-rw-r--r--src/mame/drivers/tv950.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/tv950.cpp b/src/mame/drivers/tv950.cpp
index d1497e3c044..4b46e96315b 100644
--- a/src/mame/drivers/tv950.cpp
+++ b/src/mame/drivers/tv950.cpp
@@ -77,7 +77,7 @@ private:
MC6845_UPDATE_ROW(crtc_update_row);
MC6845_ON_UPDATE_ADDR_CHANGED(crtc_update_addr);
- DECLARE_WRITE8_MEMBER(row_addr_w);
+ void row_addr_w(uint8_t data);
DECLARE_WRITE_LINE_MEMBER(via_crtc_reset_w);
void tv950_mem(address_map &map);
@@ -222,7 +222,7 @@ WRITE_LINE_MEMBER(tv950_state::via_crtc_reset_w)
}
}
-WRITE8_MEMBER(tv950_state::row_addr_w)
+void tv950_state::row_addr_w(uint8_t data)
{
m_row_addr = data;
}