summaryrefslogtreecommitdiff
path: root/src/user/lib/_start.s
diff options
context:
space:
mode:
Diffstat (limited to 'src/user/lib/_start.s')
-rw-r--r--src/user/lib/_start.s11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/user/lib/_start.s b/src/user/lib/_start.s
new file mode 100644
index 0000000..0d5b5de
--- /dev/null
+++ b/src/user/lib/_start.s
@@ -0,0 +1,11 @@
+.section .text
+.global _start
+.type _start, @function
+.weak _start
+_start:
+ mov %rsp, %rdi
+ and $~0xF, %rsp
+ call _start2
+ hlt
+ /* the call shouldn't return, thus the hlt.
+ * using a call instead of jmp for stack alignment */