summaryrefslogtreecommitdiffhomepage
path: root/dev/boot/src/HEL/ARM64/BootAPI.S
blob: 6896ed0ca419ee42918cdcfbfbddbecf02bdbbc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
.global rt_jump_to_address

.text

/**
 @brief this function setups a stack and then jumps to
 a function */
rt_jump_to_address:
    mov sp, x10
    br x9
    ret