From cbdf41189c4627fbea719e96b93e2237f38ef5de Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 20 Nov 2020 23:05:07 +0100 Subject: Added stat syscall This currently only returns the file size, other stats will follow soon! --- libc/crt/crt0.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libc/crt') 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 $ -- cgit v1.2.3