diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-06-08 09:58:46 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-06-08 09:58:46 +0200 |
| commit | 731a1400a00e4203f2409163156a5ec38cca4224 (patch) | |
| tree | 75b6f3eb821404f4000754ad3a5daa22ab01fca5 /dev/boot/src/HEL/ARM64/BootAPI.S | |
| parent | bac8a3de6477a080360ab460b97f6a79d847235e (diff) | |
fix: Fix argument registers usage inside jump proc.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/boot/src/HEL/ARM64/BootAPI.S')
| -rw-r--r-- | dev/boot/src/HEL/ARM64/BootAPI.S | 4 |
1 files changed, 2 insertions, 2 deletions
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 |
