home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / program / lynxlib / gdos.s < prev    next >
Text File  |  1993-10-23  |  243b  |  10 lines

  1.     .globl _gdos_there
  2.  
  3. _gdos_there:
  4.     move.w    #-2, d0        ; VDI function -2 seems to test if GDOS is there.
  5.     trap    #2            ; It returns -2 if it is NOT there
  6.     cmp.w    #-2, d0
  7.     sne        d0        ; set d0.b to $FF if the cmp turned out equal.
  8.     ext.w    d0
  9.     rts
  10.