summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/canyon.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/canyon.cpp')
-rw-r--r--src/mame/drivers/canyon.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/drivers/canyon.cpp b/src/mame/drivers/canyon.cpp
index f47da9a86a5..8ff0684a889 100644
--- a/src/mame/drivers/canyon.cpp
+++ b/src/mame/drivers/canyon.cpp
@@ -114,13 +114,13 @@ void canyon_state::main_map(address_map &map)
{
map.global_mask(0x3fff);
map(0x0000, 0x00ff).mirror(0x100).ram();
- map(0x0400, 0x0401).w(this, FUNC(canyon_state::canyon_motor_w));
- map(0x0500, 0x0500).w(this, FUNC(canyon_state::canyon_explode_w));
+ map(0x0400, 0x0401).w(FUNC(canyon_state::canyon_motor_w));
+ map(0x0500, 0x0500).w(FUNC(canyon_state::canyon_explode_w));
map(0x0501, 0x0501).w(m_watchdog, FUNC(watchdog_timer_device::reset_w)); /* watchdog, disabled in service mode */
- map(0x0600, 0x0603).select(0x0180).w(this, FUNC(canyon_state::output_latch_w));
- map(0x0800, 0x0bff).ram().w(this, FUNC(canyon_state::canyon_videoram_w)).share("videoram");
- map(0x1000, 0x17ff).r(this, FUNC(canyon_state::canyon_switches_r)).nopw(); /* sloppy code writes here */
- map(0x1800, 0x1fff).r(this, FUNC(canyon_state::canyon_options_r));
+ map(0x0600, 0x0603).select(0x0180).w(FUNC(canyon_state::output_latch_w));
+ map(0x0800, 0x0bff).ram().w(FUNC(canyon_state::canyon_videoram_w)).share("videoram");
+ map(0x1000, 0x17ff).r(FUNC(canyon_state::canyon_switches_r)).nopw(); /* sloppy code writes here */
+ map(0x1800, 0x1fff).r(FUNC(canyon_state::canyon_options_r));
map(0x2000, 0x3fff).rom();
}