Xyris
0.5
crti.s
Go to the documentation of this file.
1
; x86 crti.s
2
section .init
3
global _init:function
4
_init:
5
push ebp
6
mov ebp, esp
7
; gcc will nicely put the contents of crtbegin.o's .init section here.
8
9
section .fini
10
global _fini:function
11
_fini:
12
push ebp
13
mov ebp, ebp
14
; gcc will nicely put the contents of crtbegin.o's .fini section here.
Kernel
Arch
i686
Assembly
crti.s
Generated by
1.8.17