rvddt/examples/freestanding/stand03/crt0.S
2025-02-13 11:12:23 +00:00

36 lines
504 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:
#if 1
call main
#else
callmain:
auipc x1,%pcrel_hi(main)
jalr x1,%pcrel_lo(callmain)(x1)
#endif
# abort execution here
ebreak
.size _start, .-_start