something

This commit is contained in:
2024-03-23 02:28:20 +02:00
parent 6ae49ea4c8
commit fe8e9da774
9 changed files with 633 additions and 177 deletions

View File

@@ -1,14 +1,14 @@
fn fwrite with int ptr int returns int then
fn fwrite with u64 ptr u64 returns u64 then
SYS_write syscall3
done
fn puts with int ptr int returns int then
fn puts with u64 ptr u64 returns u64 then
STDOUT fwrite drop
done
fn eputs with int ptr int returns int then
fn eputs with u64 ptr u64 returns u64 then
STDERR fwrite drop
done