summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/nubus/pds30_cb264.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/nubus/pds30_cb264.cpp')
-rw-r--r--src/devices/bus/nubus/pds30_cb264.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/bus/nubus/pds30_cb264.cpp b/src/devices/bus/nubus/pds30_cb264.cpp
index f7111b2a8e6..aa0ca1df648 100644
--- a/src/devices/bus/nubus/pds30_cb264.cpp
+++ b/src/devices/bus/nubus/pds30_cb264.cpp
@@ -90,8 +90,8 @@ void nubus_cb264se30_device::device_start()
m_vram.resize(VRAM_SIZE);
m_vram32 = (uint32_t *)&m_vram[0];
- nubus().install_device(slotspace, slotspace+VRAM_SIZE-1, read32_delegate(*this, FUNC(nubus_cb264se30_device::vram_r)), write32_delegate(*this, FUNC(nubus_cb264se30_device::vram_w)));
- nubus().install_device(slotspace+0xf00000, slotspace+0xfeffff, read32_delegate(*this, FUNC(nubus_cb264se30_device::cb264se30_r)), write32_delegate(*this, FUNC(nubus_cb264se30_device::cb264se30_w)));
+ nubus().install_device(slotspace, slotspace+VRAM_SIZE-1, read32s_delegate(*this, FUNC(nubus_cb264se30_device::vram_r)), write32s_delegate(*this, FUNC(nubus_cb264se30_device::vram_w)));
+ nubus().install_device(slotspace+0xf00000, slotspace+0xfeffff, read32s_delegate(*this, FUNC(nubus_cb264se30_device::cb264se30_r)), write32s_delegate(*this, FUNC(nubus_cb264se30_device::cb264se30_w)));
m_timer = timer_alloc(0, nullptr);
m_timer->adjust(screen().time_until_pos(479, 0), 0);
@@ -228,7 +228,7 @@ uint32_t nubus_cb264se30_device::screen_update(screen_device &screen, bitmap_rgb
return 0;
}
-WRITE32_MEMBER( nubus_cb264se30_device::cb264se30_w )
+void nubus_cb264se30_device::cb264se30_w(offs_t offset, uint32_t data, uint32_t mem_mask)
{
switch (offset)
{
@@ -300,17 +300,17 @@ WRITE32_MEMBER( nubus_cb264se30_device::cb264se30_w )
}
}
-READ32_MEMBER( nubus_cb264se30_device::cb264se30_r )
+uint32_t nubus_cb264se30_device::cb264se30_r(offs_t offset, uint32_t mem_mask)
{
return 0;
}
-WRITE32_MEMBER( nubus_cb264se30_device::vram_w )
+void nubus_cb264se30_device::vram_w(offs_t offset, uint32_t data, uint32_t mem_mask)
{
COMBINE_DATA(&m_vram32[offset]);
}
-READ32_MEMBER( nubus_cb264se30_device::vram_r )
+uint32_t nubus_cb264se30_device::vram_r(offs_t offset, uint32_t mem_mask)
{
return m_vram32[offset];
}