summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/expro02.cpp
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2020-06-08 18:03:45 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2020-06-08 18:03:45 +0200
commit1a66aa592aa34b3eca250e996e55e66fc6e9fbaa (patch)
tree90c11e97aefe3ef50bcf670726243d243fd4366a /src/mame/drivers/expro02.cpp
parente962aca9dfb746cd1452d50eb262bc0c4bc4bc39 (diff)
drivers starting with e: removed read* and write* macros (nw)
Diffstat (limited to 'src/mame/drivers/expro02.cpp')
-rw-r--r--src/mame/drivers/expro02.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/expro02.cpp b/src/mame/drivers/expro02.cpp
index 6ac13718199..6767f6454c7 100644
--- a/src/mame/drivers/expro02.cpp
+++ b/src/mame/drivers/expro02.cpp
@@ -280,8 +280,8 @@ private:
TIMER_DEVICE_CALLBACK_MEMBER(scanline);
// comad
- READ16_MEMBER(comad_timer_r);
- READ8_MEMBER(comad_okim6295_r);
+ uint16_t comad_timer_r();
+ uint8_t comad_okim6295_r();
void comad_map(address_map &map);
void expro02_map(address_map &map);
void expro02_video_base_map(address_map &map);
@@ -879,13 +879,13 @@ TIMER_DEVICE_CALLBACK_MEMBER(expro02_state::scanline)
*
*************************************/
-READ16_MEMBER(expro02_state::comad_timer_r)
+uint16_t expro02_state::comad_timer_r()
{
return (m_screen->vpos() & 0x07) << 8;
}
/* a kludge! */
-READ8_MEMBER(expro02_state::comad_okim6295_r)
+uint8_t expro02_state::comad_okim6295_r()
{
uint16_t retvalue;
// retvalue = m_oki->read_status(); // doesn't work, causes lockups when girls change..