diff options
author | 2020-05-28 18:10:20 +0200 | |
---|---|---|
committer | 2020-05-28 18:10:20 +0200 | |
commit | d4c772bcc7263dd2697a7977d196a96ad2d067a3 (patch) | |
tree | 3fa4d24ee8250f44ec9f7a0cc9df94bf8bd3c5cb /src/mame/drivers/mycom.cpp | |
parent | c7d667d41adaa9627a3350e7f984fe7fc431f081 (diff) |
drivers starting with i, j, k, l and m: more macro removal (nw)
Diffstat (limited to 'src/mame/drivers/mycom.cpp')
-rw-r--r-- | src/mame/drivers/mycom.cpp | 8 |
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; } |