home *** CD-ROM | disk | FTP | other *** search
-
- ; GETA4.A
- ;
- ; (c)Copyright 1990, Matthew Dillon, All Rights Reserved
- ;
- ; Only works for non-residentable programs
-
- section text,code
-
- xref __RESIDENT ; (dlink), executable is residentable
- xref __DATA_BAS ; (dlink), base of initialized data
- xref _Wait
-
- xdef _geta4 ; we call _main()
-
- _geta4:
- move.w #__RESIDENT,D0
- bne l10
- lea __DATA_BAS+32766,A4
- rts
- l10
- pea 0
- jsr _Wait(pc) ; shouldn't return
- addq.l #4,sp
- rts
-
- END
-
-