Initial revision
This commit is contained in:
11
mach/i86/libsys/fork.s
Normal file
11
mach/i86/libsys/fork.s
Normal file
@@ -0,0 +1,11 @@
|
||||
.sect .text; .sect .rom; .sect .data; .sect .bss; .sect .text
|
||||
.define _fork
|
||||
.extern _fork, cerror
|
||||
_fork: int 0x82
|
||||
jmp 1f
|
||||
jae 2f
|
||||
jmp cerror
|
||||
1:
|
||||
xor ax,ax
|
||||
2:
|
||||
ret
|
||||
Reference in New Issue
Block a user