11 lines
165 B
Plaintext
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
|