forgot _dup() & _creat()

This commit is contained in:
eck 1990-01-22 10:34:50 +00:00
parent aee0dc7377
commit 0614d593dd
3 changed files with 20 additions and 0 deletions

View file

@ -14,7 +14,9 @@ chroot.s
close.s close.s
_close.s _close.s
creat.s creat.s
_creat.s
dup.s dup.s
_dup.s
dup2.s dup2.s
_dup2.s _dup2.s
execl.s execl.s

View file

@ -0,0 +1,9 @@
.define __creat
.extern __creat
.sect .text
.sect .rom
.sect .data
.sect .bss
.sect .text
__creat: move.l #0x8,d0
jmp (call)

View file

@ -0,0 +1,9 @@
.define __dup
.extern __dup
.sect .text
.sect .rom
.sect .data
.sect .bss
.sect .text
__dup: move.l #0x29,d0
jmp (call)