2023-03-29 03:02:49 +03: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