Initial revision

This commit is contained in:
ceriel
1987-02-20 14:36:01 +00:00
parent 506d59a939
commit 88da4849b4
167 changed files with 2574 additions and 0 deletions

15
mach/sun3/libsys/wait.s Normal file
View File

@@ -0,0 +1,15 @@
#include "syscall.h"
.sect .text; .sect .rom; .sect .data; .sect .bss; .sect .text
.define _wait
_wait:
pea (SYS_wait)
trap #0
bcs 1f
tst.l (4,sp)
beq 2f
move.l (4,sp),a0
move.l d1,(a0)
2:
rts
1:
jmp (cerror)