blob: 8df8bcb3c3457d3a69df7d242ba5c58aeae47c22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/* const.h - constants for bcc */
/* Copyright (C) 1992 Bruce Evans */
/* switches for code generation */
#define DEBUG /* generate compiler-debugging code */
#define I8088 /* target processor is Intel 8088 thru 80386 */
/*#define MC6809*/ /* target processor is Motorola 6809 */
#define SELFTYPECHECK /* check calculated type = runtime type */
#ifdef I8088
# define DYNAMIC_LONG_ORDER 1 /* long word order spec. at compile time */
# define FRAMEPOINTER /* index locals off frame ptr, not stack ptr */
# define HOLDSTRINGS /* hold strings for dumping at end
* since assembler has only 1 data seg */
#endif
#ifdef MC6809
# define DYNAMIC_LONG_ORDER 0 /* have to define it so it works in #if's */
# define OP1 /* logical operators only use 1 byte */
# define POSINDEPENDENT /* position indep code can (also) be gen */
#endif
/* switches for source and target operating system dependencies */
/*#define SOS_EDOS*/ /* source O/S is EDOS */
/*#define SOS_MSDOS*/ /* source O/S is MSDOS */
/*#define TOS_EDOS*/ /* target O/S is EDOS */
/* switches for source machine dependencies */
#ifndef SOS_EDOS
# define S_ALIGNMENT (sizeof(int)) /* source memory alignment, power of 2 */
#endif
#ifndef SOS_MSDOS /* need portable alignment for large model */
# define UNPORTABLE_ALIGNMENT
#endif
/* local style */
#define FALSE 0
#ifndef NULL
#define NULL 0
#endif
#define TRUE 1
#define EXTERN extern
#define FORWARD static
#define PRIVATE static
#define PUBLIC
|