From 731a1400a00e4203f2409163156a5ec38cca4224 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sun, 8 Jun 2025 09:58:46 +0200 Subject: fix: Fix argument registers usage inside jump proc. Signed-off-by: Amlal El Mahrouss --- dev/boot/src/HEL/ARM64/BootAPI.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dev/boot/src') diff --git a/dev/boot/src/HEL/ARM64/BootAPI.S b/dev/boot/src/HEL/ARM64/BootAPI.S index 6896ed0c..55183abf 100644 --- a/dev/boot/src/HEL/ARM64/BootAPI.S +++ b/dev/boot/src/HEL/ARM64/BootAPI.S @@ -6,7 +6,7 @@ @brief this function setups a stack and then jumps to a function */ rt_jump_to_address: - mov sp, x10 - br x9 + mov sp, x1 + br x0 ret -- cgit v1.2.3