Barest of bare bones

This commit is contained in:
Eryn Wells 2016-02-26 22:31:34 -08:00
parent 3350ea2151
commit d71037a775
5 changed files with 149 additions and 0 deletions

15
crti.s Normal file
View file

@ -0,0 +1,15 @@
.section .init
.global _init
.type _init, @function
_init:
push %ebp
movl %esp, %ebp
# crtbegin.o's .init section goes here.
.section .fini
.global _fini
.type _fini, @function
_fini:
push %ebp
movl %esp, %ebp
# crtbegin.o's .fini section goes here.