summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/pgmprot.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/pgmprot.c')
-rw-r--r--src/mame/machine/pgmprot.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/pgmprot.c b/src/mame/machine/pgmprot.c
index 9caca92a5a4..2201f73330d 100644
--- a/src/mame/machine/pgmprot.c
+++ b/src/mame/machine/pgmprot.c
@@ -150,8 +150,8 @@ DRIVER_INIT_MEMBER(pgm_asic3_state,orlegend)
{
pgm_basic_init(machine());
- machine().device("maincpu")->memory().space(AS_PROGRAM)->install_legacy_readwrite_handler(0xC0400e, 0xC0400f, FUNC(pgm_asic3_r), FUNC(pgm_asic3_w));
- machine().device("maincpu")->memory().space(AS_PROGRAM)->install_legacy_write_handler(0xC04000, 0xC04001, FUNC(pgm_asic3_reg_w));
+ machine().device("maincpu")->memory().space(AS_PROGRAM).install_legacy_readwrite_handler(0xC0400e, 0xC0400f, FUNC(pgm_asic3_r), FUNC(pgm_asic3_w));
+ machine().device("maincpu")->memory().space(AS_PROGRAM).install_legacy_write_handler(0xC04000, 0xC04001, FUNC(pgm_asic3_reg_w));
m_asic3_reg = 0;
m_asic3_latch[0] = 0;