diff options
Diffstat (limited to 'src/mame/machine/btime.cpp')
-rw-r--r-- | src/mame/machine/btime.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/btime.cpp b/src/mame/machine/btime.cpp index 7eaffda5e26..8d3df4633dd 100644 --- a/src/mame/machine/btime.cpp +++ b/src/mame/machine/btime.cpp @@ -6,7 +6,7 @@ #define BASE 0xb000 -READ8_MEMBER(btime_state::mmonkey_protection_r) +uint8_t btime_state::mmonkey_protection_r(offs_t offset) { uint8_t *RAM = memregion("maincpu")->base(); int ret = 0; @@ -23,7 +23,7 @@ READ8_MEMBER(btime_state::mmonkey_protection_r) return ret; } -WRITE8_MEMBER(btime_state::mmonkey_protection_w) +void btime_state::mmonkey_protection_w(offs_t offset, uint8_t data) { uint8_t *RAM = memregion("maincpu")->base(); |