Implemented block instruction parsing

This commit is contained in:
Eduard Urbach 2024-06-24 00:03:26 +02:00
parent a9d43a8716
commit 121f77fe76
Signed by: eduard
GPG key ID: 49226B848C78F6C8
6 changed files with 70 additions and 13 deletions

View file

@ -8,5 +8,7 @@ hello() {
address := 4194305
length := 3
syscall(write, stdout, address, length)
loop {
syscall(write, stdout, address, length)
}
}