comparison src/m/gould.h @ 442:abe6d1db359e r21-2-36

Import from CVS: tag r21-2-36
author cvs
date Mon, 13 Aug 2007 11:35:02 +0200
parents 3ecd8885ac67
children 4542b72c005e
comparison
equal deleted inserted replaced
441:72a7cfa4a488 442:abe6d1db359e
44 44
45 Version 19 incorporates support for releases 2.1 and later of UTX/32. 45 Version 19 incorporates support for releases 2.1 and later of UTX/32.
46 A site running a pre-release of 2.1 should #define RELEASE2_1 in config.h. 46 A site running a pre-release of 2.1 should #define RELEASE2_1 in config.h.
47 NOTE-END */ 47 NOTE-END */
48 48
49 /* Define WORD_MACHINE if addresses and such have
50 * to be corrected before they can be used as byte counts. */
51
52 /* #define WORD_MACHINE */
53
54 /* Now define a symbol for the cpu type, if your compiler 49 /* Now define a symbol for the cpu type, if your compiler
55 does not define it automatically */ 50 does not define it automatically */
56 51
57 #ifndef GOULD 52 #ifndef GOULD
58 #define GOULD 53 #define GOULD
59 #endif 54 #endif
60 55
61 /* sel is an old preprocessor name on gould machines 56 /* sel is an old preprocessor name on gould machines
62 - it is no longer needed and interferes with a variable in xmenu.c */ 57 - it is no longer needed and interferes with a variable in xmenu.c */
63 #undef sel 58 #undef sel
64
65 /* Define EXPLICIT_SIGN_EXTEND if XINT must explicitly sign-extend
66 the bit field into an int. In other words, if bit fields
67 are always unsigned.
68
69 If you use NO_UNION_TYPE, this flag does not matter. */
70
71 #define EXPLICIT_SIGN_EXTEND
72 59
73 /* Data type of load average, as read out of kmem. */ 60 /* Data type of load average, as read out of kmem. */
74 61
75 #define LOAD_AVE_TYPE double 62 #define LOAD_AVE_TYPE double
76 63
81 /* Define CANNOT_DUMP on machines where unexec does not work. 68 /* Define CANNOT_DUMP on machines where unexec does not work.
82 Then the function dump-emacs will not be defined 69 Then the function dump-emacs will not be defined
83 and temacs will do (load "loadup") automatically unless told otherwise. */ 70 and temacs will do (load "loadup") automatically unless told otherwise. */
84 71
85 /* #define CANNOT_DUMP */ 72 /* #define CANNOT_DUMP */
86
87 /* Define VIRT_ADDR_VARIES if the virtual addresses of
88 pure and impure space as loaded can vary, and even their
89 relative order cannot be relied on.
90
91 Otherwise Emacs assumes that text space precedes data space,
92 numerically. */
93
94 #define VIRT_ADDR_VARIES
95 73
96 /* Define C_ALLOCA if this machine does not support a true alloca 74 /* Define C_ALLOCA if this machine does not support a true alloca
97 and the one written in C should be used instead. 75 and the one written in C should be used instead.
98 Define HAVE_ALLOCA to say that the system provides a properly 76 Define HAVE_ALLOCA to say that the system provides a properly
99 working alloca function and it should be used. 77 working alloca function and it should be used.