Implemented numeric constants

This commit is contained in:
Eduard Urbach 2024-06-14 11:48:28 +02:00
parent f603c3a479
commit 3da77d22d7
Signed by: eduard
GPG key ID: 49226B848C78F6C8
7 changed files with 59 additions and 9 deletions

View file

@ -1,4 +1,8 @@
main() {
syscall(1, 1, 4194305, 3)
syscall(60, 0)
let write = 1
let exit = 60
let stdout = 1
syscall(write, stdout, 4194305, 3)
syscall(exit, 0)
}