24 lines
278 B
Plaintext
24 lines
278 B
Plaintext
main() {
|
|
hello()
|
|
}
|
|
|
|
hello() {
|
|
write := 1
|
|
stdout := 1
|
|
address := 0
|
|
length := 0
|
|
|
|
address += 4194304
|
|
address += 1
|
|
|
|
length = 0
|
|
length += 50
|
|
length -= 20
|
|
length *= 10
|
|
length /= 100
|
|
length = (0 + 50 - 20) * 10 / 100
|
|
|
|
loop {
|
|
syscall(write, stdout, address, length)
|
|
}
|
|
} |