diff options
Diffstat (limited to 'src/devices/video/ps2gif.cpp')
-rw-r--r-- | src/devices/video/ps2gif.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/video/ps2gif.cpp b/src/devices/video/ps2gif.cpp index 82ee34e267e..4a8ea53db7a 100644 --- a/src/devices/video/ps2gif.cpp +++ b/src/devices/video/ps2gif.cpp @@ -94,7 +94,7 @@ void ps2_gif_device::gif_reset() m_vu_mem_address = 0; } -READ32_MEMBER(ps2_gif_device::read) +uint32_t ps2_gif_device::read(offs_t offset) { uint32_t ret = 0; switch (offset) @@ -163,7 +163,7 @@ READ32_MEMBER(ps2_gif_device::read) return ret; } -WRITE32_MEMBER(ps2_gif_device::write) +void ps2_gif_device::write(offs_t offset, uint32_t data) { switch (offset) { @@ -291,8 +291,8 @@ void ps2_gif_device::process_tag(tag_t &tag, uint64_t hi, uint64_t lo) tag.loop(); break; default: - m_gs->regs_w(machine().dummy_space(), 0x54, lo); - m_gs->regs_w(machine().dummy_space(), 0x54, hi); + m_gs->regs_w(0x54, lo); + m_gs->regs_w(0x54, hi); tag.loop(); break; } |