fixed
This commit is contained in:
parent
c259e2c9f8
commit
dc57d08c82
@ -48,7 +48,14 @@ begtext:
|
||||
shr bx,cl
|
||||
shl bx,cl
|
||||
call grow
|
||||
xor cx,cx
|
||||
push cx
|
||||
call _sbrk
|
||||
mov (.limhp),ax
|
||||
mov (.reghp),ax ! on Xenix, heap begins above stack!
|
||||
pop ax
|
||||
call _m_a_i_n
|
||||
push ax
|
||||
call __exit
|
||||
.sect .data
|
||||
begdata:
|
||||
|
||||
@ -6,6 +6,6 @@ wait(p)
|
||||
long l = _wait();
|
||||
|
||||
if (l == -1) return -1;
|
||||
if (*p) *p = (l >> 16);
|
||||
if (p) *p = (l >> 16);
|
||||
return (int) l;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user