test_proc/main.68k

11 lines
165 B
Plaintext
Raw Permalink Normal View History

2024-03-20 14:17:21 -05:00
include syscalls.i
section .text,text
2024-03-21 08:37:43 -05:00
public main
main:
2024-03-20 14:17:21 -05:00
move.l #msg, a0
jsr syscall_println
2024-03-21 08:37:43 -05:00
rts
2024-03-20 14:17:21 -05:00
section .data,data
msg: dc.b "Hello from test_proc",0