diff options
Diffstat (limited to '')
-rw-r--r-- | user/lib/entry.S | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/user/lib/entry.S b/user/lib/entry.S index 40570b5..efaa652 100644 --- a/user/lib/entry.S +++ b/user/lib/entry.S @@ -5,7 +5,6 @@ .section .text .code64 _start: - call main - subq $16, %rsp # ??? - pushq %rax + call main + movq %rax, %rdi call exit |