summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/prestige.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/prestige.cpp')
-rw-r--r--src/mame/drivers/prestige.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mame/drivers/prestige.cpp b/src/mame/drivers/prestige.cpp
index af14c935c8f..d7d1315f577 100644
--- a/src/mame/drivers/prestige.cpp
+++ b/src/mame/drivers/prestige.cpp
@@ -336,21 +336,21 @@ void prestige_state::prestige_io(address_map &map)
{
map.unmap_value_high();
map.global_mask(0xff);
- map(0x04, 0x05).rw(this, FUNC(prestige_state::mouse_r), FUNC(prestige_state::mouse_w));
- map(0x30, 0x3f).w(this, FUNC(prestige_state::lcdc_w));
- map(0x40, 0x40).w(this, FUNC(prestige_state::kb_w));
- map(0x41, 0x42).r(this, FUNC(prestige_state::kb_r));
- map(0x50, 0x56).rw(this, FUNC(prestige_state::bankswitch_r), FUNC(prestige_state::bankswitch_w));
+ map(0x04, 0x05).rw(FUNC(prestige_state::mouse_r), FUNC(prestige_state::mouse_w));
+ map(0x30, 0x3f).w(FUNC(prestige_state::lcdc_w));
+ map(0x40, 0x40).w(FUNC(prestige_state::kb_w));
+ map(0x41, 0x42).r(FUNC(prestige_state::kb_r));
+ map(0x50, 0x56).rw(FUNC(prestige_state::bankswitch_r), FUNC(prestige_state::bankswitch_w));
}
void prestige_state::glcolor_io(address_map &map)
{
map.unmap_value_high();
map.global_mask(0xff);
- map(0x30, 0x3f).w(this, FUNC(prestige_state::lcdc_w));
- map(0x40, 0x40).w(this, FUNC(prestige_state::kb_w));
- map(0x41, 0x42).r(this, FUNC(prestige_state::kb_r));
- map(0x50, 0x56).rw(this, FUNC(prestige_state::bankswitch_r), FUNC(prestige_state::bankswitch_w));
+ map(0x30, 0x3f).w(FUNC(prestige_state::lcdc_w));
+ map(0x40, 0x40).w(FUNC(prestige_state::kb_w));
+ map(0x41, 0x42).r(FUNC(prestige_state::kb_r));
+ map(0x50, 0x56).rw(FUNC(prestige_state::bankswitch_r), FUNC(prestige_state::bankswitch_w));
}
/* Input ports */