diff options
author | Marvin Borner | 2020-08-21 23:08:16 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-21 23:08:16 +0200 |
commit | 94de27efb7f9f97d162c1cd6b0a2bb89e3fe555f (patch) | |
tree | b2ae93419138cd0af46559b0b1f1a03862d62242 /libc/crt/crt0.asm | |
parent | f700ba6668dbdb91a03b2c5aa387eb4cabae8fcd (diff) |
Finished proper return of processes
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 4d473ec..5e3080f 100644 --- a/libc/crt/crt0.asm +++ b/libc/crt/crt0.asm @@ -9,7 +9,7 @@ global _start _start: call main - push edi + push eax push 6 call sys1 jmp $ |