summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/thepit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/thepit.cpp')
-rw-r--r--src/mame/video/thepit.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/thepit.cpp b/src/mame/video/thepit.cpp
index a731096e9d3..bbd5150914c 100644
--- a/src/mame/video/thepit.cpp
+++ b/src/mame/video/thepit.cpp
@@ -150,14 +150,14 @@ void thepit_state::video_start()
*
*************************************/
-WRITE8_MEMBER(thepit_state::videoram_w)
+void thepit_state::videoram_w(offs_t offset, uint8_t data)
{
m_videoram[offset] = data;
m_tilemap->mark_tile_dirty(offset);
}
-WRITE8_MEMBER(thepit_state::colorram_w)
+void thepit_state::colorram_w(offs_t offset, uint8_t data)
{
m_colorram[offset] = data;
m_tilemap->mark_tile_dirty(offset);
@@ -201,7 +201,7 @@ WRITE_LINE_MEMBER(thepit_state::intrepid_graphics_bank_w)
}
-READ8_MEMBER(thepit_state::input_port_0_r)
+uint8_t thepit_state::input_port_0_r()
{
/* Read either the real or the fake input ports depending on the
horizontal flip switch. (This is how the real PCB does it) */