Squash commits for public release
This commit is contained in:
15
libs/libc/sysdeps/unix/x86/crt0.S
Normal file
15
libs/libc/sysdeps/unix/x86/crt0.S
Normal file
@@ -0,0 +1,15 @@
|
||||
section .text
|
||||
|
||||
extern main
|
||||
extern exit
|
||||
extern _init
|
||||
extern _deinit
|
||||
|
||||
global _start:function (_start.end - _start)
|
||||
_start:
|
||||
call _init
|
||||
call main
|
||||
push eax
|
||||
call _deinit
|
||||
call exit
|
||||
.end:
|
||||
Reference in New Issue
Block a user