summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/mycom.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mycom.cpp')
-rw-r--r--src/mame/drivers/mycom.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/mycom.cpp b/src/mame/drivers/mycom.cpp
index 7f86458b225..de1fb5afcc2 100644
--- a/src/mame/drivers/mycom.cpp
+++ b/src/mame/drivers/mycom.cpp
@@ -99,8 +99,8 @@ public:
void mycom(machine_config &config);
private:
- DECLARE_READ8_MEMBER(vram_data_r);
- DECLARE_WRITE8_MEMBER(vram_data_w);
+ u8 vram_data_r();
+ void vram_data_w(u8 data);
void port00_w(u8 data);
void port04_w(u8 data);
void port06_w(u8 data);
@@ -209,12 +209,12 @@ void mycom_state::port00_w(u8 data)
}
}
-READ8_MEMBER( mycom_state::vram_data_r )
+u8 mycom_state::vram_data_r()
{
return m_vram[m_i_videoram];
}
-WRITE8_MEMBER( mycom_state::vram_data_w )
+void mycom_state::vram_data_w(u8 data)
{
m_vram[m_i_videoram] = data;
}