summary refs log tree commit diff
diff options
context:
space:
mode:
authorDruid520 <r.ustydruid520@proton.me>2026-08-17 12:59:57 -0700
committerDruid520 <r.ustydruid520@proton.me>2026-08-17 12:59:57 -0700
commitead2aaa4b395ca4c30d77aa26e7a09e0b93ea4b7 (patch)
treec900c4c91be5f725b30a19a92fc490ad319b045b
parent848c0c6a3fcd3a05a2d8d5fbb3eb550bc423f807 (diff)
DEL: bad comment.
-rw-r--r--src/start.s2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/start.s b/src/start.s index 58efed0..683bfe7 100644 --- a/src/start.s +++ b/src/start.s
@@ -7,7 +7,7 @@ _start:
7 movl (%rsp), %edi # argc = first 4 bytes of stack. 7 movl (%rsp), %edi # argc = first 4 bytes of stack.
8 leaq 8(%rsp), %rsi # argv = address of first arg ptr. 8 leaq 8(%rsp), %rsi # argv = address of first arg ptr.
9 9
10 call main # see main.c. 10 call main
11 11
12 movl %eax, %edi # status = ret val. 12 movl %eax, %edi # status = ret val.
13 movl $1, %eax # SYS_exit = 1. 13 movl $1, %eax # SYS_exit = 1.