diff options
author | Freya Murphy <freya@freyacat.org> | 2025-04-24 12:39:05 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-04-24 12:39:05 -0400 |
commit | 1b032501d088abe9a8624d4673e0b78931bb7108 (patch) | |
tree | 747e98d22835c199a27a5f46d4f42e9f463251fb /user | |
parent | kernel syscall handler (diff) | |
download | comus-1b032501d088abe9a8624d4673e0b78931bb7108.tar.gz comus-1b032501d088abe9a8624d4673e0b78931bb7108.tar.bz2 comus-1b032501d088abe9a8624d4673e0b78931bb7108.zip |
libc should not halt
Diffstat (limited to 'user')
-rw-r--r-- | user/lib/entry.S | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/user/lib/entry.S b/user/lib/entry.S index 34390a0..40570b5 100644 --- a/user/lib/entry.S +++ b/user/lib/entry.S @@ -6,10 +6,6 @@ .code64 _start: call main - subq $16, %rsp # ??? pushq %rax call exit - -halt: - jmp halt |