summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/tc0180vcu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/tc0180vcu.cpp')
-rw-r--r--src/mame/video/tc0180vcu.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/video/tc0180vcu.cpp b/src/mame/video/tc0180vcu.cpp
index 51f79c715f8..fb3df9474de 100644
--- a/src/mame/video/tc0180vcu.cpp
+++ b/src/mame/video/tc0180vcu.cpp
@@ -240,7 +240,7 @@ void tc0180vcu_device::video_control( uint8_t data )
machine().tilemap().set_flip_all((m_video_control & 0x10) ? (TILEMAP_FLIPX | TILEMAP_FLIPY) : 0 );
}
-WRITE16_MEMBER( tc0180vcu_device::ctrl_w )
+void tc0180vcu_device::ctrl_w(offs_t offset, uint16_t data, uint16_t mem_mask)
{
uint16_t oldword = m_ctrl[offset];
@@ -280,7 +280,7 @@ WRITE16_MEMBER( tc0180vcu_device::ctrl_w )
}
}
-READ16_MEMBER(tc0180vcu_device::framebuffer_word_r)
+uint16_t tc0180vcu_device::framebuffer_word_r(offs_t offset)
{
int sy = offset >> 8;
int sx = 2 * (offset & 0xff);
@@ -288,7 +288,7 @@ READ16_MEMBER(tc0180vcu_device::framebuffer_word_r)
return (m_framebuffer[sy >> 8]->pix16(sy & 0xff, sx + 0) << 8) | m_framebuffer[sy >> 8]->pix16(sy & 0xff, sx + 1);
}
-WRITE16_MEMBER(tc0180vcu_device::framebuffer_word_w)
+void tc0180vcu_device::framebuffer_word_w(offs_t offset, uint16_t data, uint16_t mem_mask)
{
int sy = offset >> 8;
int sx = 2 * (offset & 0xff);
@@ -329,7 +329,7 @@ TILE_GET_INFO_MEMBER(tc0180vcu_device::get_tx_tile_info)
0);
}
-WRITE16_MEMBER( tc0180vcu_device::word_w )
+void tc0180vcu_device::word_w(offs_t offset, uint16_t data, uint16_t mem_mask)
{
COMBINE_DATA(&m_vram[offset]);