1 /* Copyright (c) 1979 Regents of the University of California */ 2 3 /* static char sccsid[] = "@(#)pcwhoami.h 1.3 02/01/83"; */ 4 5 /* 6 * am i generating an obj file (OBJ), 7 * postfix binary input to the 2nd pass of the portable c compiler (PC), 8 * or pTrees (PTREE)? 9 */ 10 #undef OBJ 11 #define PC 12 #undef PTREE 13 14 /* 15 * we assume one of the following will be defined by the preprocessor: 16 * vax for vaxes 17 * pdp11 for pdp11's 18 * mc68000 for motorola mc68000's 19 */ 20 21 /* 22 * hardware characteristics: 23 * address size (16 or 32 bits) and byte ordering (normal or dec11 family). 24 */ 25 #undef ADDR16 26 #define ADDR32 27 #undef DEC11 28 29 /* 30 * am i pi or pxp? 31 */ 32 #define PI 33 #undef PXP 34 35 /* 36 * am i both passes, or am i only one of the two passes pi0 or pi1? 37 */ 38 #define PI01 39 #undef PI0 40 #undef PI1 41