diff options
Diffstat (limited to 'src/user/lib/crt0.s')
-rw-r--r-- | src/user/lib/crt0.s | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/user/lib/crt0.s b/src/user/lib/crt0.s deleted file mode 100644 index 3548264..0000000 --- a/src/user/lib/crt0.s +++ /dev/null @@ -1,21 +0,0 @@ -.section .text -.global _start -.type _start, @function -.weak _start -_start: - mov %rsp, %rbp - and $~0xF, %rsp - call elf_selfreloc - - mov %rbp, %rsp - - pop %rdi - call __setinitialcwd - - pop %rdi - pop %rsi - pop %rdx - and $~0xF, %rsp - call main - mov %rax, %rdi - jmp exit |