mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-05-27 15:04:31 +00:00
14 lines
183 B
ArmAsm
14 lines
183 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
|