Files
jsix_import/src/kernel/crti.s
2019-02-03 18:59:09 -08:00

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