2023-10-17 13:10:35 +00:00
|
|
|
main() {
|
2024-06-18 14:42:56 +00:00
|
|
|
hello()
|
|
|
|
}
|
|
|
|
|
|
|
|
hello() {
|
2024-06-23 18:26:53 +00:00
|
|
|
write := 1
|
|
|
|
stdout := 1
|
2024-06-18 14:42:56 +00:00
|
|
|
address := 4194305
|
|
|
|
length := 3
|
2024-06-14 09:48:28 +00:00
|
|
|
|
2024-06-23 22:03:26 +00:00
|
|
|
loop {
|
|
|
|
syscall(write, stdout, address, length)
|
|
|
|
}
|
2024-06-14 08:36:01 +00:00
|
|
|
}
|