Improved build system
Added new entries to .gitignore Moved away from source directory as central spot for all source code
This commit is contained in:
14
kernel/crti.s
Normal file
14
kernel/crti.s
Normal 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
|
||||
Reference in New Issue
Block a user