home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c220 / 4.ddi / LIB / SRC / EMCUSED.ASM < prev    next >
Encoding:
Assembly Source File  |  1990-12-16  |  640 b   |  20 lines

  1.         name    emcused
  2.     include    model
  3. ; Export the variable _mwemc87_used.
  4. _MWEMC_USED1 segment common byte 'DATA'
  5. ifdef    DS_grouped
  6. DGROUP group _MWEMC_USED1
  7. endif
  8.         public _mwemc87_used
  9. magic    dw    0abcdh        
  10. offoops dd    offset DGROUP:oops 
  11. _mwemc87_used equ this byte    ; Anything to define it.
  12. oopsptr dd    offset DGROUP:oops
  13. oopslen    dw      End_msg-oops-2  ; Discount the 0 and the $ for Concurrent DOS.
  14.     ; The 0 allows other systems that terminate with 0 to work also.
  15.     ; DOS just adds an extra 0 at the end.
  16. oops    db    'Cyrix EMC87 required but not present!',13,10,0,'$'
  17. End_msg    equ this byte
  18. _MWEMC_USED1 ends
  19. end
  20.