Upload files to "/"

This commit is contained in:
2025-05-20 20:29:33 -05:00
parent 0de2bf1300
commit be74cc7967
5 changed files with 285 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
/* 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
/* gcc will nicely put the contents of crtbegin.o's .fini section here. */