summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/embargo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/embargo.cpp')
-rw-r--r--src/mame/drivers/embargo.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/embargo.cpp b/src/mame/drivers/embargo.cpp
index 9a69d1473df..8bea4cc0d81 100644
--- a/src/mame/drivers/embargo.cpp
+++ b/src/mame/drivers/embargo.cpp
@@ -179,15 +179,15 @@ void embargo_state::main_map(address_map &map)
void embargo_state::main_io_map(address_map &map)
{
- map(0x01, 0x01).portr("IN0").w(this, FUNC(embargo_state::port_1_w));
- map(0x02, 0x02).rw(this, FUNC(embargo_state::dial_r), FUNC(embargo_state::port_2_w));
+ map(0x01, 0x01).portr("IN0").w(FUNC(embargo_state::port_1_w));
+ map(0x02, 0x02).rw(FUNC(embargo_state::dial_r), FUNC(embargo_state::port_2_w));
map(0x03, 0x03).nopw(); /* always 0xFE */
}
void embargo_state::main_data_map(address_map &map)
{
map(S2650_DATA_PORT, S2650_DATA_PORT).portr("IN2");
- map(S2650_CTRL_PORT, S2650_CTRL_PORT).rw(this, FUNC(embargo_state::input_port_bit_r), FUNC(embargo_state::input_select_w));
+ map(S2650_CTRL_PORT, S2650_CTRL_PORT).rw(FUNC(embargo_state::input_port_bit_r), FUNC(embargo_state::input_select_w));
}