summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/stratos.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/stratos.cpp')
-rw-r--r--src/mame/drivers/stratos.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/stratos.cpp b/src/mame/drivers/stratos.cpp
index 02d5c10c973..518756c31b8 100644
--- a/src/mame/drivers/stratos.cpp
+++ b/src/mame/drivers/stratos.cpp
@@ -333,12 +333,12 @@ WRITE8_MEMBER(stratos_state::lcd_w)
void stratos_state::stratos_mem(address_map &map)
{
map(0x0000, 0x1fff).ram();
- map(0x2000, 0x2000).w(this, FUNC(stratos_state::p2000_w));
- map(0x2200, 0x2200).rw(this, FUNC(stratos_state::p2200_r), FUNC(stratos_state::p2200_w));
- map(0x2400, 0x2400).w(this, FUNC(stratos_state::p2400_w));
- map(0x2600, 0x2600).rw(this, FUNC(stratos_state::control_r), FUNC(stratos_state::control_w));
+ map(0x2000, 0x2000).w(FUNC(stratos_state::p2000_w));
+ map(0x2200, 0x2200).rw(FUNC(stratos_state::p2200_r), FUNC(stratos_state::p2200_w));
+ map(0x2400, 0x2400).w(FUNC(stratos_state::p2400_w));
+ map(0x2600, 0x2600).rw(FUNC(stratos_state::control_r), FUNC(stratos_state::control_w));
map(0x2800, 0x37ff).bankrw("nvram_bank");
- map(0x3800, 0x3800).rw(this, FUNC(stratos_state::lcd_r), FUNC(stratos_state::lcd_w));
+ map(0x3800, 0x3800).rw(FUNC(stratos_state::lcd_r), FUNC(stratos_state::lcd_w));
map(0x4000, 0x7fff).bankr("bank_4000");
map(0x8000, 0xffff).bankr("bank_8000");
}