mirror of
https://github.com/justinian/jsix.git
synced 2025-12-10 08:24:32 -08:00
15 lines
244 B
ArmAsm
15 lines
244 B
ArmAsm
section .init
|
|
global _init:function
|
|
_init:
|
|
push rbp
|
|
mov rbp, rsp
|
|
; Control flow falls through to other .init sections
|
|
|
|
section .fini
|
|
global _fini:function
|
|
_fini:
|
|
push rbp
|
|
mov rbp, rsp
|
|
; Control flow falls through to other .fini sections
|
|
|