27 lines
344 B
Plaintext
Raw Normal View History

2023-10-17 15:10:35 +02:00
main() {
2024-06-18 16:42:56 +02:00
hello()
}
hello() {
write := 1
stdout := 1
2024-06-24 16:55:15 +02:00
address := 0
2024-06-24 14:14:07 +02:00
length := 0
2024-06-24 16:55:15 +02:00
address += 4194304
2024-06-24 14:14:07 +02:00
address += 1
2024-06-25 00:19:01 +02:00
2024-06-26 22:51:14 +02:00
length = 0 + 1
length -= length
length += write + stdout
length -= length
2024-06-25 00:19:01 +02:00
length += 50
length -= 20
length *= 10
length /= 100
2024-06-25 20:50:06 +02:00
length = (0 + 50 - 20) * 10 / 100
2024-06-14 11:48:28 +02:00
2024-06-24 00:03:26 +02:00
loop {
syscall(write, stdout, address, length)
}
2024-06-14 10:36:01 +02:00
}