30 lines
417 B
ArmAsm
30 lines
417 B
ArmAsm
.text
|
|
.global _start
|
|
.type _start, @function
|
|
|
|
_start:
|
|
|
|
# Initialize global pointer
|
|
.option push
|
|
.option norelax
|
|
la gp,__global_pointer$
|
|
.option pop
|
|
|
|
# Clear the bss segment
|
|
la a0,__bss_start
|
|
la a1,__BSS_END__
|
|
|
|
clear_bss:
|
|
bgeu a0,a1,finish_bss
|
|
sb x0,0(a0)
|
|
addi a0,a0,1
|
|
beq x0,x0,clear_bss
|
|
finish_bss:
|
|
|
|
call main
|
|
|
|
# abort execution here
|
|
ebreak
|
|
|
|
.size _start, .-_start
|