summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/neogeo/fatfury2.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/neogeo/fatfury2.h')
-rw-r--r--src/devices/bus/neogeo/fatfury2.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/neogeo/fatfury2.h b/src/devices/bus/neogeo/fatfury2.h
index 804049e4ff0..ba3e274b7ac 100644
--- a/src/devices/bus/neogeo/fatfury2.h
+++ b/src/devices/bus/neogeo/fatfury2.h
@@ -18,8 +18,8 @@ public:
neogeo_fatfury2_cart_device(const machine_config &mconfig, const char *tag, device_t *owner, uint16_t clock);
// reading and writing
- virtual DECLARE_READ16_MEMBER(protection_r) override { return m_prot->protection_r(space, offset, mem_mask); }
- virtual DECLARE_WRITE16_MEMBER(protection_w) override { m_prot->protection_w(space, offset, data, mem_mask); }
+ virtual uint16_t protection_r(address_space &space, offs_t offset) override { return m_prot->protection_r(offset); }
+ virtual void protection_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0) override { m_prot->protection_w(offset, data); }
protected:
// device-level overrides