1234567891011121314151617181920212223 |
- #include "tm-m68k.h"
- /* See tm-m68k.h. 7 means 68020 with 68881. */
- #define TARGET_DEFAULT 7
- /* -m68000 requires special flags to the assembler. */
- #define ASM_SPEC "%{m68000:-mc68010}%{!m68000:-mc68020}"
- /* Names to predefine in the preprocessor for this target machine. */
- #define CPP_PREDEFINES "-Dmc68000 -Dsun -Dunix"
- /* Alignment of field after `int : 0' in a structure. */
- #undef EMPTY_FIELD_BOUNDARY
- #define EMPTY_FIELD_BOUNDARY 16
- /* Every structure or union's size must be a multiple of 2 bytes. */
- #define STRUCTURE_SIZE_BOUNDARY 16
|