mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 23:32:06 +00:00
13 lines
132 B
ArmAsm
13 lines
132 B
ArmAsm
.globl _fork
|
|
.globl fork
|
|
_fork:
|
|
fork:
|
|
movl $2, %eax
|
|
lcall $7,$0
|
|
jb _cerror
|
|
testl %edx, %edx
|
|
je bye
|
|
xorl %eax,%eax
|
|
bye:
|
|
ret
|