diff options
author | 2020-06-12 18:25:17 +0200 | |
---|---|---|
committer | 2020-06-12 18:25:17 +0200 | |
commit | 72397ac72513b23256cbdb876c9875541f7c9cc0 (patch) | |
tree | 1ca10539430469a09189334c77007ebb64964ec6 /src/devices/bus/neogeo/boot_misc.h | |
parent | a61d5c48366d14ee829faf74707381d9ff65b22c (diff) |
drivers starting with m, n and o: removed read* and write* macros (nw)
Diffstat (limited to 'src/devices/bus/neogeo/boot_misc.h')
-rw-r--r-- | src/devices/bus/neogeo/boot_misc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/neogeo/boot_misc.h b/src/devices/bus/neogeo/boot_misc.h index d46bca46d51..cf07a67e774 100644 --- a/src/devices/bus/neogeo/boot_misc.h +++ b/src/devices/bus/neogeo/boot_misc.h @@ -173,7 +173,7 @@ public: virtual void decrypt_all(DECRYPT_ALL_PARAMS) override; virtual int get_fixed_bank_type() override { return 1; } - virtual DECLARE_READ16_MEMBER(protection_r) override { return m_prot->mslug5p_prot_r(space, offset, mem_mask); } + virtual uint16_t protection_r(address_space &space, offs_t offset) override { return m_prot->mslug5p_prot_r(); } virtual uint32_t get_bank_base(uint16_t sel) override { return m_prot->mslug5p_bank_base(sel); } protected: @@ -213,7 +213,7 @@ public: virtual ioport_constructor device_input_ports() const override; - virtual DECLARE_READ16_MEMBER(protection_r) override; + virtual uint16_t protection_r(address_space &space, offs_t offset) override; virtual void decrypt_all(DECRYPT_ALL_PARAMS) override; virtual int get_fixed_bank_type() override { return 0; } |