A few fixes
This commit is contained in:
parent
b9c3a99783
commit
97a7fcbca3
3 changed files with 16 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
||||||
#include "SYS.h"
|
#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
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
#include "SYS.h"
|
#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
|
||||||
|
|
|
@ -6,3 +6,4 @@ SYS_call_1(umount)
|
||||||
|
|
||||||
_unmount:
|
_unmount:
|
||||||
b _umount
|
b _umount
|
||||||
|
nop
|
||||||
|
|
Loading…
Reference in a new issue