home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c221 / 5.ddi / MWHC.005 / 03 < prev    next >
Encoding:
Text File  |  1992-12-09  |  757 b   |  27 lines

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