Add first C user program

This commit is contained in:
2026-06-11 20:19:24 +03:00
parent b32c12b311
commit 1c935cf154
55 changed files with 365 additions and 276 deletions
+6
View File
@@ -0,0 +1,6 @@
#include "src/user/syscall.h"
int main() {
write(1, "Hello from C!\n", 14);
return 0;
}