summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/neogeo/sbp.h
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2020-06-12 18:25:17 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2020-06-12 18:25:17 +0200
commit72397ac72513b23256cbdb876c9875541f7c9cc0 (patch)
tree1ca10539430469a09189334c77007ebb64964ec6 /src/devices/bus/neogeo/sbp.h
parenta61d5c48366d14ee829faf74707381d9ff65b22c (diff)
drivers starting with m, n and o: removed read* and write* macros (nw)
Diffstat (limited to 'src/devices/bus/neogeo/sbp.h')
-rw-r--r--src/devices/bus/neogeo/sbp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/neogeo/sbp.h b/src/devices/bus/neogeo/sbp.h
index 455c7892399..25fd920f281 100644
--- a/src/devices/bus/neogeo/sbp.h
+++ b/src/devices/bus/neogeo/sbp.h
@@ -17,8 +17,8 @@ class neogeo_sbp_cart_device : public neogeo_rom_device
public:
neogeo_sbp_cart_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- virtual DECLARE_WRITE16_MEMBER(protection_w) override;
- virtual DECLARE_READ16_MEMBER(protection_r) override;
+ virtual void protection_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0) 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; }