summaryrefslogtreecommitdiffstats
path: root/usr/klibc/arch/arm64/crt0.S
blob: 0b2dd32b6d5489d92fa2ea140c7a160d9f09ad90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#
# arch/arm64/crt0.S
#
# void _start(void)
# {
#    __libc_init(elf_structure, atexit_ptr);
# }
#

	.text
	.balign 8
	.type _start,#function
	.globl _start

_start:
	mov	x0, sp
	mov	x1, #0
	bl	__libc_init
	.size _start,.-_start