1985-02-07 22:06:32 +00:00
|
|
|
.define .mon
|
1986-07-22 13:37:16 +00:00
|
|
|
.sect .text
|
|
|
|
.sect .rom
|
|
|
|
.sect .data
|
|
|
|
.sect .bss
|
|
|
|
|
1987-03-27 09:58:03 +00:00
|
|
|
.sect .text
|
1985-02-07 22:06:32 +00:00
|
|
|
.mon:
|
|
|
|
move.l (sp)+,a0
|
|
|
|
pea fmt
|
|
|
|
jsr .diagnos
|
1987-03-27 09:58:03 +00:00
|
|
|
add.l #8,sp
|
1985-02-07 22:06:32 +00:00
|
|
|
jmp EXIT
|
|
|
|
|
1986-07-22 13:37:16 +00:00
|
|
|
.sect .data
|
1987-03-27 09:58:03 +00:00
|
|
|
fmt: .asciz "system call %d not implemented\n"
|
1985-02-07 22:06:32 +00:00
|
|
|
.align 2
|