diff options
Diffstat (limited to 'src/devices/bus/neogeo/prot_mslugx.cpp')
-rw-r--r-- | src/devices/bus/neogeo/prot_mslugx.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/neogeo/prot_mslugx.cpp b/src/devices/bus/neogeo/prot_mslugx.cpp index 650d595bf87..38cbb0b436b 100644 --- a/src/devices/bus/neogeo/prot_mslugx.cpp +++ b/src/devices/bus/neogeo/prot_mslugx.cpp @@ -1,5 +1,5 @@ // license:BSD-3-Clause -// copyright-holders:S. Smith,David Haywood,Fabio Priuli +// copyright-holders:S. Smith, David Haywood, Fabio Priuli, iq_132 #include "emu.h" #include "prot_mslugx.h" @@ -32,7 +32,7 @@ void mslugx_prot_device::device_reset() Also found is a QFP144 chip labeled with 0103 - function unknown ***************************************************************/ -WRITE16_MEMBER( mslugx_prot_device::protection_w ) +void mslugx_prot_device::protection_w(offs_t offset, uint16_t data) { switch (offset) { @@ -60,7 +60,7 @@ WRITE16_MEMBER( mslugx_prot_device::protection_w ) } -READ16_MEMBER( mslugx_prot_device::protection_r ) +uint16_t mslugx_prot_device::protection_r(address_space &space, offs_t offset) { uint16_t res = 0; |