A few fixes

This commit is contained in:
ceriel 1991-11-07 11:36:09 +00:00
parent b9c3a99783
commit 97a7fcbca3
3 changed files with 16 additions and 2 deletions

View file

@ -1,3 +1,10 @@
#include "SYS.h"
_SYS_call_1(pipe)
LABEL__(pipe); ENTRY1
LABEL(pipe)
mov %o0,%o2
BODY1(pipe)
st %o0,[%o2]
st %o1,[%o2+4]
retl
clr %o0

View file

@ -1,3 +1,9 @@
#include "SYS.h"
SYS_call_1(pipe)
LABEL_(pipe); ENTRY1;
mov %o0,%o2
BODY1(pipe)
st %o0,[%o2]
st %o1,[%o2+4]
retl
clr %o0

View file

@ -6,3 +6,4 @@ SYS_call_1(umount)
_unmount:
b _umount
nop