ack/mach/m65oo2/libsys/_fork.s
2024-02-22 16:13:52 +01:00

11 lines
167 B
ArmAsm

.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