17 lines
172 B
Plaintext
17 lines
172 B
Plaintext
main() {
|
|
hello()
|
|
}
|
|
|
|
hello() {
|
|
write := 1
|
|
stdout := 1
|
|
address := 4194304
|
|
length := 0
|
|
|
|
address += 1
|
|
length += 3
|
|
|
|
loop {
|
|
syscall(write, stdout, address, length)
|
|
}
|
|
} |