orion/src/arch/i386/crti.asm

12 lines
117 B
NASM

section .init
global _init
_init:
push ebp
mov ebp, esp
section .fini
global _fini
_fini:
push ebp
mov ebp, esp