home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c005 / 1.ddi / COMPILER.M3L < prev    next >
Encoding:
Text File  |  1986-08-05  |  1006 b   |  43 lines

  1. /**
  2. *   COMPILER.H    --  Header file to set compiler and data model
  3. *
  4. *   The following definitions specify the particular C Compiler
  5. *   used:
  6. *
  7. *        LAT200   Microsoft (Lattice) Version 2.04
  8. *        LAT210   Lattice Version 2.10
  9. *        LAT300   Lattice Version 3.00
  10. *        CI201A   Computer Innovations C86 Version 201A or later
  11. *        MSC300   Microsoft MS 3.00 Compiler
  12. *
  13. *  The following definitions specify the data model used:
  14. *
  15. *        LDATA    Multiple data segments (large data model)
  16. *        SDATA    Single data segment (small data model)
  17. *        LPROG    Multiple code segments
  18. *        SPROG    Single code segment
  19. *
  20. *  Version 3.0    (C)Copyright Blaise Computing Inc.  1983, 1984, 1985
  21. *
  22. **/
  23. #undef    LAT200
  24. #undef    LAT210
  25. #undef    LAT300
  26. #undef    CI201A
  27. #undef    MSC300
  28. #undef    LDATA
  29. #undef    SDATA
  30. #undef    LPROG
  31. #undef    SPROG
  32.  
  33. #define LAT200    0
  34. #define LAT210    0
  35. #define LAT300    0
  36. #define CI201A    0
  37. #define MSC300    1
  38.  
  39. #define LDATA    1
  40. #define SDATA    0
  41. #define LPROG    1
  42. #define SPROG    0
  43.