summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/ft68m.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/ft68m.cpp')
-rw-r--r--src/mame/drivers/ft68m.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/ft68m.cpp b/src/mame/drivers/ft68m.cpp
index c106f7b2974..62fdc128e53 100644
--- a/src/mame/drivers/ft68m.cpp
+++ b/src/mame/drivers/ft68m.cpp
@@ -32,7 +32,7 @@ public:
void ft68m(machine_config &config);
private:
- DECLARE_READ16_MEMBER(switches_r);
+ uint16_t switches_r();
void mem_map(address_map &map);
@@ -44,7 +44,7 @@ private:
required_device<cpu_device> m_maincpu;
};
-READ16_MEMBER( ft68m_state::switches_r )
+uint16_t ft68m_state::switches_r()
{
return 0x7c00; // bypass self test
}