diff options
author | Marvin Borner | 2020-11-20 23:05:07 +0100 |
---|---|---|
committer | Marvin Borner | 2020-11-20 23:05:07 +0100 |
commit | cbdf41189c4627fbea719e96b93e2237f38ef5de (patch) | |
tree | ba159ea2e2f726d4cc10db95babf59279ff03fc8 /libc/crt/crt0.asm | |
parent | 33d3ac6b5302f5e3a23cc7e318cf1f0605c398e5 (diff) |
Added stat syscall
This currently only returns the file size, other stats will
follow soon!
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 5e3080f..006bcb2 100644 --- a/libc/crt/crt0.asm +++ b/libc/crt/crt0.asm @@ -10,6 +10,6 @@ _start: call main push eax - push 6 + push 7 call sys1 jmp $ |