home *** CD-ROM | disk | FTP | other *** search
- /**
- * COMPILER.H -- Header file to set compiler and data model
- *
- * The following definitions specify the particular C Compiler
- * used:
- *
- * LAT200 Microsoft (Lattice) Version 2.04
- * LAT210 Lattice Version 2.10
- * LAT300 Lattice Version 3.00
- * CI201A Computer Innovations C86 Version 201A or later
- * MSC300 Microsoft MS 3.00 Compiler
- *
- * The following definitions specify the data model used:
- *
- * LDATA Multiple data segments (large data model)
- * SDATA Single data segment (small data model)
- * LPROG Multiple code segments
- * SPROG Single code segment
- *
- * Version 3.0 (C)Copyright Blaise Computing Inc. 1983, 1984, 1985
- *
- **/
- #undef LAT200
- #undef LAT210
- #undef LAT300
- #undef CI201A
- #undef MSC300
- #undef LDATA
- #undef SDATA
- #undef LPROG
- #undef SPROG
-
- #define LAT200 0
- #define LAT210 0
- #define LAT300 1
- #define CI201A 0
- #define MSC300 0
-
- #define LDATA 0
- #define SDATA 1
- #define LPROG 0
- #define SPROG 1