]>
Commit | Line | Data |
---|---|---|
fecd2382 RP |
1 | /* |
2 | * This file is te-ic960.h and is intended to define ic960 environment | |
3 | * specific differences. | |
4 | */ | |
5 | ||
6 | /* $Id$ */ | |
7 | ||
8 | #define TE_IC960 1 | |
9 | ||
10 | /* intel uses host byte order for headers */ | |
11 | #ifdef CROSS_ASSEMBLE | |
12 | #undef CROSS_ASSEMBLE | |
13 | #endif /* CROSS_ASSEMBLE */ | |
14 | ||
15 | #define OBJ_COFF_OMIT_OPTIONAL_HEADER | |
16 | #define LOCAL_LABEL(name) ( (name[0] =='L') \ | |
17 | || (name[0] =='.' \ | |
18 | && (name[1]=='C' || name[1]=='I' || name[1]=='.'))) | |
19 | #include "obj-format.h" | |
20 | ||
21 | /* | |
22 | * Local Variables: | |
23 | * comment-column: 0 | |
24 | * fill-column: 131 | |
25 | * End: | |
26 | */ | |
27 | ||
28 | /* end of te-ic960.h */ |