home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fish 'n' More 2
/
fishmore-publicdomainlibraryvol.ii1991xetec.iso
/
fish
/
telecom
/
uucp_442
/
src
/
lib
/
gethead.a
< prev
next >
Wrap
Text File
|
1990-08-02
|
320b
|
23 lines
; GETHEAD.A
;
; (c)Copyright 1990, Matthew Dillon, All Rights Reserved
;
section text,CODE
xdef _GetHead ; GetHead(list:4(sp))
xdef _GetSucc ; GetSucc(node:4(sp))
_GetSucc:
_GetHead: move.l 4(sp),A0
move.l (A0),A0
tst.l (A0)
beq gh0
move.l A0,D0
rts
gh0 moveq.l #0,D0
rts
END