summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/n64.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/n64.c')
-rw-r--r--src/mame/machine/n64.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/n64.c b/src/mame/machine/n64.c
index 501d8d2cbe5..685374c130c 100644
--- a/src/mame/machine/n64.c
+++ b/src/mame/machine/n64.c
@@ -2323,8 +2323,8 @@ void n64_state::machine_start()
rsp_device *rsp = machine().device<rsp_device>("rsp");
rsp->rspdrc_set_options(RSPDRC_STRICT_VERIFY);
rsp->rspdrc_flush_drc_cache();
- rsp->rspdrc_add_dmem(rsp_dmem);
- rsp->rspdrc_add_imem(rsp_imem);
+ rsp->rsp_add_dmem(rsp_dmem);
+ rsp->rsp_add_imem(rsp_imem);
/* add a hook for battery save */
machine().add_notifier(MACHINE_NOTIFY_EXIT, machine_notify_delegate(FUNC(n64_state::n64_machine_stop),this));