New directory structure

This commit is contained in:
nigel
2021-05-02 15:23:50 -04:00
parent 5bd25a3737
commit b44f6761f1
12 changed files with 122 additions and 55 deletions

View File

@ -0,0 +1,14 @@
.section .init
.global _init
.type _init, @function
_init:
push %ebp
movl %esp, %ebp
/* gcc will nicely put the contents of crtbegin.o's .init section here. */
.section .fini
.global _fini
.type _fini, @function
_fini:
push %ebp
movl %esp, %ebp