2022-11-14 14:54:18 +02:00

14 lines
173 B
ArmAsm

.section .init
.global _init
.type _init, @function
_init:
push %ebp
mov %esp, %ebp
.section .fini
.global _fini
.type _fini, @function
_fini:
push %ebp
mov %esp, %ebp