Fixed incorrect const values

This commit is contained in:
2025-02-21 13:47:56 +01:00
parent 04ece57b27
commit 1ca61190eb
22 changed files with 93 additions and 92 deletions

View File

@ -1,8 +1,8 @@
read(fd int, buffer *any, length int) -> int {
read(fd int, buffer *byte, length int) -> int {
return syscall(0x2000003, fd, buffer, length)
}
write(fd int, buffer *any, length int) -> int {
write(fd int, buffer *byte, length int) -> int {
return syscall(0x2000004, fd, buffer, length)
}