summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/vcs80.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/vcs80.cpp')
-rw-r--r--src/mame/drivers/vcs80.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/vcs80.cpp b/src/mame/drivers/vcs80.cpp
index 22b6d1ebda6..7c2dfc40376 100644
--- a/src/mame/drivers/vcs80.cpp
+++ b/src/mame/drivers/vcs80.cpp
@@ -86,7 +86,7 @@ private:
m_bdmem->write8(offset, data);
}
- DECLARE_READ8_MEMBER( io_r )
+ uint8_t io_r(offs_t offset)
{
m_pio->port_b_write((!BIT(offset, 0)) << 7);
if (BIT(offset, 2))
@@ -94,7 +94,7 @@ private:
return 0xff;
}
- DECLARE_WRITE8_MEMBER( io_w )
+ void io_w(offs_t offset, uint8_t data)
{
m_pio->port_b_write((!BIT(offset, 0)) << 7);
if (BIT(offset, 2))