diff options
Diffstat (limited to 'lib/libc/src/arch/amd64')
-rw-r--r-- | lib/libc/src/arch/amd64/crti.S (renamed from lib/libc/src/arch/amd64/crt0.S) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/src/arch/amd64/crt0.S b/lib/libc/src/arch/amd64/crti.S index 9dc0cbf..582fea4 100644 --- a/lib/libc/src/arch/amd64/crt0.S +++ b/lib/libc/src/arch/amd64/crti.S @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team. + * Copyright (c) 2023-2025 Ian Marco Moffett and the Osmora Team. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -29,8 +29,8 @@ #include <sys/syscall.h> -.text -.globl _start + .section .init + .globl _start _start: // Mark end of callstack xor %rbp, %rbp |