summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/efdt.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/efdt.cpp
parente962aca9dfb746cd1452d50eb262bc0c4bc4bc39 (diff)
drivers starting with e: removed read* and write* macros (nw)
Diffstat (limited to 'src/mame/drivers/efdt.cpp')
-rw-r--r--src/mame/drivers/efdt.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/efdt.cpp b/src/mame/drivers/efdt.cpp
index 234e879f5ef..2da74a9f3ce 100644
--- a/src/mame/drivers/efdt.cpp
+++ b/src/mame/drivers/efdt.cpp
@@ -431,12 +431,12 @@ void efdt_state::machine_reset()
* Sound Latches *
*********************************************/
-READ8_MEMBER(efdt_state::main_soundlatch_r)
+uint8_t efdt_state::main_soundlatch_r(offs_t offset)
{
return m_soundlatch[offset];
}
-WRITE8_MEMBER(efdt_state::main_soundlatch_w)
+void efdt_state::main_soundlatch_w(offs_t offset, uint8_t data)
{
m_soundlatch[offset] = data;
switch (offset)