Initial revision

This commit is contained in:
ceriel
1987-03-03 09:37:26 +00:00
parent 1194f5f28c
commit c32da75ccd
154 changed files with 1313 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#include "syscall.h"
.sect .text; .sect .rom; .sect .data; .sect .bss; .sect .text
.define _getppid
_getppid:
pea SYS_getpid
trap #0
move.l d1,d0
rts