diff options
author | Marvin Borner | 2021-02-07 16:58:48 +0100 |
---|---|---|
committer | Marvin Borner | 2021-02-07 16:58:48 +0100 |
commit | 59894afa1bc0f4efc85917710adf2e93d7e17a5e (patch) | |
tree | eafaa21081430de4a0d09d8ac963ddc4e2f21a00 /libc/crt/crt0.asm | |
parent | eca4dfd49216f6158df69143994a18a0b3edd4fe (diff) |
Added poll syscall
Diffstat (limited to 'libc/crt/crt0.asm')
-rw-r--r-- | libc/crt/crt0.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/crt/crt0.asm b/libc/crt/crt0.asm index 006bcb2..a0621ff 100644 --- a/libc/crt/crt0.asm +++ b/libc/crt/crt0.asm @@ -10,6 +10,6 @@ _start: call main push eax - push 7 + push 8 call sys1 jmp $ |