diff options
Diffstat (limited to 'lib/mlibc/sysdeps/lemon/crt-x86_64/crt0.S')
-rwxr-xr-x | lib/mlibc/sysdeps/lemon/crt-x86_64/crt0.S | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/mlibc/sysdeps/lemon/crt-x86_64/crt0.S b/lib/mlibc/sysdeps/lemon/crt-x86_64/crt0.S new file mode 100755 index 0000000..62298e3 --- /dev/null +++ b/lib/mlibc/sysdeps/lemon/crt-x86_64/crt0.S @@ -0,0 +1,10 @@ +.section .text + +.global _start +_start: + mov $main, %rdi + call __mlibc_entry + +.size _start, . - _start +.section .note.GNU-stack,"",%progbits + |