q/lib/core/core_linux_arm.q
Eduard Urbach 70c2da4a4d
All checks were successful
/ test (push) Successful in 28s
Implemented an assembler
2025-06-24 12:55:26 +02:00

12 lines
No EOL
88 B
Text

init() {
main.main()
exit()
}
exit() {
syscall(93, 0)
}
crash() {
syscall(93, 1)
}