summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/carpolo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/carpolo.cpp')
-rw-r--r--src/mame/drivers/carpolo.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/mame/drivers/carpolo.cpp b/src/mame/drivers/carpolo.cpp
index 203dad48769..c2a3073c3d1 100644
--- a/src/mame/drivers/carpolo.cpp
+++ b/src/mame/drivers/carpolo.cpp
@@ -41,21 +41,21 @@ void carpolo_state::main_map(address_map &map)
map(0x4000, 0x400f).writeonly().share("spriteram");
map(0x5400, 0x5403).rw("pia0", FUNC(pia6821_device::read), FUNC(pia6821_device::write));
map(0x5800, 0x5803).rw("pia1", FUNC(pia6821_device::read), FUNC(pia6821_device::write));
- map(0xa000, 0xa000).r(this, FUNC(carpolo_state::carpolo_ball_screen_collision_cause_r));
- map(0xa001, 0xa001).r(this, FUNC(carpolo_state::carpolo_car_ball_collision_x_r));
- map(0xa002, 0xa002).r(this, FUNC(carpolo_state::carpolo_car_ball_collision_y_r));
- map(0xa003, 0xa003).r(this, FUNC(carpolo_state::carpolo_car_car_collision_cause_r));
- map(0xa004, 0xa004).r(this, FUNC(carpolo_state::carpolo_car_border_collision_cause_r));
- map(0xa005, 0xa005).r(this, FUNC(carpolo_state::carpolo_car_ball_collision_cause_r));
- map(0xa006, 0xa006).r(this, FUNC(carpolo_state::carpolo_car_goal_collision_cause_r));
+ map(0xa000, 0xa000).r(FUNC(carpolo_state::carpolo_ball_screen_collision_cause_r));
+ map(0xa001, 0xa001).r(FUNC(carpolo_state::carpolo_car_ball_collision_x_r));
+ map(0xa002, 0xa002).r(FUNC(carpolo_state::carpolo_car_ball_collision_y_r));
+ map(0xa003, 0xa003).r(FUNC(carpolo_state::carpolo_car_car_collision_cause_r));
+ map(0xa004, 0xa004).r(FUNC(carpolo_state::carpolo_car_border_collision_cause_r));
+ map(0xa005, 0xa005).r(FUNC(carpolo_state::carpolo_car_ball_collision_cause_r));
+ map(0xa006, 0xa006).r(FUNC(carpolo_state::carpolo_car_goal_collision_cause_r));
map(0xa007, 0xa007).portr("IN1");
- map(0xb000, 0xb000).w(this, FUNC(carpolo_state::carpolo_ball_screen_interrupt_clear_w));
- map(0xb001, 0xb001).w(this, FUNC(carpolo_state::carpolo_timer_interrupt_clear_w));
- map(0xb003, 0xb003).w(this, FUNC(carpolo_state::carpolo_car_car_interrupt_clear_w));
- map(0xb004, 0xb004).w(this, FUNC(carpolo_state::carpolo_car_border_interrupt_clear_w));
- map(0xb005, 0xb005).w(this, FUNC(carpolo_state::carpolo_car_ball_interrupt_clear_w));
- map(0xb006, 0xb006).w(this, FUNC(carpolo_state::carpolo_car_goal_interrupt_clear_w));
- map(0xc000, 0xc000).r(this, FUNC(carpolo_state::carpolo_interrupt_cause_r));
+ map(0xb000, 0xb000).w(FUNC(carpolo_state::carpolo_ball_screen_interrupt_clear_w));
+ map(0xb001, 0xb001).w(FUNC(carpolo_state::carpolo_timer_interrupt_clear_w));
+ map(0xb003, 0xb003).w(FUNC(carpolo_state::carpolo_car_car_interrupt_clear_w));
+ map(0xb004, 0xb004).w(FUNC(carpolo_state::carpolo_car_border_interrupt_clear_w));
+ map(0xb005, 0xb005).w(FUNC(carpolo_state::carpolo_car_ball_interrupt_clear_w));
+ map(0xb006, 0xb006).w(FUNC(carpolo_state::carpolo_car_goal_interrupt_clear_w));
+ map(0xc000, 0xc000).r(FUNC(carpolo_state::carpolo_interrupt_cause_r));
map(0xf000, 0xffff).rom();
}