summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/f1gp.cpp
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2020-06-09 19:27:19 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2020-06-09 19:27:19 +0200
commita1533ddc5e165d4168641ed830189e512881b9a3 (patch)
treec4cd75f9dbd4a47123f1ba0d11c14efb37c96885 /src/mame/drivers/f1gp.cpp
parentf54da1f7c8fee73024ede583dacd2547594cea8c (diff)
drivers starting with f: removed read* and write* macros (nw)
Diffstat (limited to 'src/mame/drivers/f1gp.cpp')
-rw-r--r--src/mame/drivers/f1gp.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/f1gp.cpp b/src/mame/drivers/f1gp.cpp
index fe659012122..cfc71d8f96e 100644
--- a/src/mame/drivers/f1gp.cpp
+++ b/src/mame/drivers/f1gp.cpp
@@ -41,13 +41,13 @@
#include "speaker.h"
-WRITE8_MEMBER(f1gp_state::sh_bankswitch_w)
+void f1gp_state::sh_bankswitch_w(uint8_t data)
{
m_z80bank->set_entry(data & 0x01);
}
-READ8_MEMBER(f1gp_state::command_pending_r)
+uint8_t f1gp_state::command_pending_r()
{
return (m_soundlatch->pending_r() ? 0xff : 0);
}
@@ -127,7 +127,7 @@ void f1gp_state::sound_io_map(address_map &map)
map(0x18, 0x1b).rw("ymsnd", FUNC(ym2610_device::read), FUNC(ym2610_device::write));
}
-WRITE16_MEMBER(f1gp_state::f1gpb_misc_w)
+void f1gp_state::f1gpb_misc_w(uint16_t data)
{
/*
static int old=-1;