summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/interact.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/interact.cpp')
-rw-r--r--src/mame/drivers/interact.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/drivers/interact.cpp b/src/mame/drivers/interact.cpp
index bfd9ead3b5d..cd2fc2e8e0b 100644
--- a/src/mame/drivers/interact.cpp
+++ b/src/mame/drivers/interact.cpp
@@ -91,12 +91,12 @@ void interact_state::interact_mem(address_map &map)
/* Hardware address mapping*/
/* AM_RANGE(0x0800,0x0808) AM_WRITE(switch_bank_w)// Bank management not udsed in BR machine*/
- map(0x1000, 0x1000).w(this, FUNC(interact_state::color_a_w)); /* Color c0/c1*/
- map(0x1800, 0x1800).w(this, FUNC(interact_state::color_b_w)); /* Color c2/c3*/
- map(0x2000, 0x2003).w(this, FUNC(interact_state::sn_2000_w)); /* Sound*/
- map(0x2800, 0x2803).w(this, FUNC(interact_state::sn_2800_w)); /* Sound*/
- map(0x3000, 0x3000).rw(this, FUNC(interact_state::cassette_r), FUNC(interact_state::sn_3000_w));/* Write necessary*/
- map(0x3800, 0x3807).rw(this, FUNC(interact_state::keyboard_r), FUNC(interact_state::keyboard_w)); /* Keyboard*/
+ map(0x1000, 0x1000).w(FUNC(interact_state::color_a_w)); /* Color c0/c1*/
+ map(0x1800, 0x1800).w(FUNC(interact_state::color_b_w)); /* Color c2/c3*/
+ map(0x2000, 0x2003).w(FUNC(interact_state::sn_2000_w)); /* Sound*/
+ map(0x2800, 0x2803).w(FUNC(interact_state::sn_2800_w)); /* Sound*/
+ map(0x3000, 0x3000).rw(FUNC(interact_state::cassette_r), FUNC(interact_state::sn_3000_w));/* Write necessary*/
+ map(0x3800, 0x3807).rw(FUNC(interact_state::keyboard_r), FUNC(interact_state::keyboard_w)); /* Keyboard*/
/* Video br mapping*/
map(0x4000, 0x49ff).ram().share("videoram");