test_proc/main.68k

11 lines
165 B
Plaintext

include syscalls.i
section .text,text
public main
main:
move.l #msg, a0
jsr syscall_println
rts
section .data,data
msg: dc.b "Hello from test_proc",0