summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mastboyo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mastboyo.cpp')
-rw-r--r--src/mame/drivers/mastboyo.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/mastboyo.cpp b/src/mame/drivers/mastboyo.cpp
index d5af2d4f4c2..9384dfa3d7f 100644
--- a/src/mame/drivers/mastboyo.cpp
+++ b/src/mame/drivers/mastboyo.cpp
@@ -107,9 +107,9 @@ void mastboyo_state::mastboyo_map(address_map &map)
{
map(0x0000, 0x3fff).rom();
map(0x4000, 0x47ff).ram().share("nvram");
- map(0x5000, 0x53ff).ram().w(this, FUNC(mastboyo_state::fgram_w)).share("fgram");
- map(0x5400, 0x57ff).ram().w(this, FUNC(mastboyo_state::fgram2_w)).share("fgram2");
- map(0x6000, 0x6000).w(this, FUNC(mastboyo_state::rombank_w));
+ map(0x5000, 0x53ff).ram().w(FUNC(mastboyo_state::fgram_w)).share("fgram");
+ map(0x5400, 0x57ff).ram().w(FUNC(mastboyo_state::fgram2_w)).share("fgram2");
+ map(0x6000, 0x6000).w(FUNC(mastboyo_state::rombank_w));
// map(0x7000, 0x7000).portr("UNK"); // possible watchdog? or IRQ ack?
map(0x8000, 0xffff).bankr("bank1");
}