homework/cpp/_crt0.S

39 lines
564 B
ArmAsm
Raw Normal View History

2024-05-24 12:08:04 +00:00
.text
.global _start
.type _start, @function
_start:
# Initialize global pointer
.option push
.option norelax
la gp, __global_pointer$
.option pop
li sp, 0x80020000
# Clear the bss segment
la a0, __bss_start
la a1, __BSS_END__
j finish_bss
clear_bss:
finish_bss:
nop //!
call main
nop //!
# abort execution here
ebreak
.section .rodata
alfabet:
.string "abcdefghijklmnopqrstuwxyz"
slowo:
.section .data
wynik:
.string "mpabi"
.space 26 # rezerwuje 26 bajtów dla wyniku, zainicjowane na 0