summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/peyper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/peyper.cpp')
-rw-r--r--src/mame/drivers/peyper.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/peyper.cpp b/src/mame/drivers/peyper.cpp
index 92905244bad..e0626024c9a 100644
--- a/src/mame/drivers/peyper.cpp
+++ b/src/mame/drivers/peyper.cpp
@@ -223,12 +223,12 @@ void peyper_state::peyper_io(address_map &map)
map(0x08, 0x08).w("ay2", FUNC(ay8910_device::address_w));
map(0x09, 0x09).r("ay2", FUNC(ay8910_device::data_r)); // never actually read?
map(0x0a, 0x0a).w("ay2", FUNC(ay8910_device::data_w));
- map(0x0c, 0x0c).w(this, FUNC(peyper_state::sol_w));
- map(0x10, 0x18).w(this, FUNC(peyper_state::lamp_w));
+ map(0x0c, 0x0c).w(FUNC(peyper_state::sol_w));
+ map(0x10, 0x18).w(FUNC(peyper_state::lamp_w));
map(0x20, 0x20).portr("DSW0");
map(0x24, 0x24).portr("DSW1");
map(0x28, 0x28).portr("SYSTEM");
- map(0x2c, 0x2c).w(this, FUNC(peyper_state::lamp7_w));
+ map(0x2c, 0x2c).w(FUNC(peyper_state::lamp7_w));
}
static INPUT_PORTS_START( pbsonic_generic )