13 lines
175 B
ArmAsm
13 lines
175 B
ArmAsm
|
.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
|