mirror of
https://github.com/Fennix-Project/Userspace.git
synced 2025-05-28 15:34:26 +00:00
15 lines
257 B
ArmAsm
15 lines
257 B
ArmAsm
# I WILL PLACE HERE THE crti.o BECAUSE GCC REFUSE TO LINK IT AND I DON'T KNOW WHY
|
|
.section .init
|
|
.global _init
|
|
.type _init, @function
|
|
_init:
|
|
push %rbp
|
|
movq %rsp, %rbp
|
|
|
|
.section .fini
|
|
.global _fini
|
|
.type _fini, @function
|
|
_fini:
|
|
push %rbp
|
|
movq %rsp, %rbp
|