summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/segas32.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/segas32.c')
-rw-r--r--src/mame/drivers/segas32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/segas32.c b/src/mame/drivers/segas32.c
index acd05e67954..01d477c64ba 100644
--- a/src/mame/drivers/segas32.c
+++ b/src/mame/drivers/segas32.c
@@ -4048,7 +4048,7 @@ static DRIVER_INIT( arabfgt )
segas32_state *state = machine.driver_data<segas32_state>();
segas32_common_init(machine, read16_delegate(FUNC(segas32_state::extra_custom_io_r),state), write16_delegate());
- /* install protection handlers */
+ /* install protection handlers */
machine.device("maincpu")->memory().space(AS_PROGRAM)->install_read_handler(0xa00100, 0xa0011f, read16_delegate(FUNC(segas32_state::arf_wakeup_protection_r),state));
machine.device("maincpu")->memory().space(AS_PROGRAM)->install_readwrite_handler(0xa00000, 0xa00fff, read16_delegate(FUNC(segas32_state::arabfgt_protection_r),state), write16_delegate(FUNC(segas32_state::arabfgt_protection_w),state));
}
@@ -4120,7 +4120,7 @@ static DRIVER_INIT( ga2 )
segas32_state *state = machine.driver_data<segas32_state>();
segas32_common_init(machine, read16_delegate(FUNC(segas32_state::extra_custom_io_r),state), write16_delegate());
- decrypt_ga2_protrom(machine);
+ decrypt_ga2_protrom(machine);
machine.device("maincpu")->memory().space(AS_PROGRAM)->install_readwrite_handler(0xa00000, 0xa00fff, read16_delegate(FUNC(segas32_state::ga2_dpram_r),state), write16_delegate(FUNC(segas32_state::ga2_dpram_w),state));
}