19 lines
199 B
Plaintext
19 lines
199 B
Plaintext
main() {
|
|
hello()
|
|
}
|
|
|
|
hello() {
|
|
write := 1
|
|
stdout := 1
|
|
address := 0
|
|
length := 0
|
|
|
|
address += 4194304
|
|
address += 1
|
|
length += 5
|
|
length -= 2
|
|
|
|
loop {
|
|
syscall(write, stdout, address, length)
|
|
}
|
|
} |