Initial revision

This commit is contained in:
ceriel
1987-01-08 10:41:08 +00:00
parent 037c2426ab
commit c2805a25bd
54 changed files with 671 additions and 0 deletions

12
mach/i86/libsys/execv.s Normal file
View File

@@ -0,0 +1,12 @@
.sect .text; .sect .rom; .sect .data; .sect .bss; .sect .text
.define _execv
.extern _execv, _environ, cerror
_execv:
mov bx,sp
push (_environ)
push 4(bx)
push 2(bx)
push ax
int 0xbb
add sp,8
jmp cerror