ack/mach/i86/libsys/execv.s

13 lines
211 B
ArmAsm
Raw Normal View History

1987-01-08 10:41:08 +00:00
.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