comparison src/m/amdahl.h @ 412:697ef44129c6 r21-2-14

Import from CVS: tag r21-2-14
author cvs
date Mon, 13 Aug 2007 11:20:41 +0200
parents a86b2b5e0111
children
comparison
equal deleted inserted replaced
411:12e008d41344 412:697ef44129c6
30 30
31 This file works with the Amdahl uts native C compiler. The 5.2u370 31 This file works with the Amdahl uts native C compiler. The 5.2u370
32 compiler is so brain damaged that it is not even worth trying to use it. 32 compiler is so brain damaged that it is not even worth trying to use it.
33 */ 33 */
34 34
35 /* Define WORD_MACHINE if addresses and such have
36 * to be corrected before they can be used as byte counts. */
37
38 #define WORD_MACHINE /* not actually used anywhere yet! */
39
35 /* Now define a symbol for the cpu type, if your compiler 40 /* Now define a symbol for the cpu type, if your compiler
36 does not define it automatically: 41 does not define it automatically:
37 vax, m68000, ns16000, pyramid, orion, tahoe and APOLLO 42 vax, m68000, ns16000, pyramid, orion, tahoe and APOLLO
38 are the ones defined so far. */ 43 are the ones defined so far. */
39 44
40 /* uts gets defined automatically */ 45 /* uts gets defined automatically */
41 /* However for clarity define amdahl_uts */ 46 /* However for clarity define amdahl_uts */
42 #define amdahl_uts 47 #define amdahl_uts
48
49 /* Define EXPLICIT_SIGN_EXTEND if XINT must explicitly sign-extend
50 the bit field into an int. In other words, if bit fields
51 are always unsigned.
52
53 If you use NO_UNION_TYPE, this flag does not matter. */
54
55 #define EXPLICIT_SIGN_EXTEND
43 56
44 /* Data type of load average, as read out of kmem. */ 57 /* Data type of load average, as read out of kmem. */
45 58
46 /* #define LOAD_AVE_TYPE long*/ 59 /* #define LOAD_AVE_TYPE long*/
47 60