summaryrefslogtreecommitdiffhomepage
path: root/dev/boot/src/HEL/ARM64/BootAPI.S
blob: 55183abfcad13f2613930e8818b1a5e399d2795d (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, x1
    br x0
    ret