home *** CD-ROM | disk | FTP | other *** search
- ; GETPRED.A
- ;
- ; (c)Copyright 1990, Matthew Dillon, All Rights Reserved
- ;
-
- ;Prototype struct Node *GetPred (struct Node *);
-
- section text,CODE
-
- xdef _GetPred ; node = GetPred(node:4(sp))
-
- _GetPred: move.l 4(sp),A0
- move.l 4(A0),A0
- tst.l 4(A0)
- beq gp0
- move.l A0,D0
- rts
- gp0 moveq.l #0,D0
- rts
-
- END
-
-
-