ack/mach/sun2/libsys/fork.s

15 lines
186 B
ArmAsm
Raw Normal View History

1987-03-03 09:37:26 +00:00
#include "syscall.h"
.sect .text; .sect .rom; .sect .data; .sect .bss; .sect .text
.define _fork
_fork:
pea SYS_fork
trap #0
bcs 1f
tst.l d1
beq 2f
clr.l d0
2:
rts
1:
jmp cerror