mach0.c 773 B

123456789101112131415161718192021222324252627282930313233
  1. /* $Id$ */
  2. /*
  3. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  4. * See the copyright notice in the ACK home directory, in the file "Copyright".
  5. */
  6. /*
  7. * Motorola 68020 options
  8. */
  9. #define THREE_PASS /* branch and offset optimization */
  10. #define BYTES_REVERSED /* high order byte has lowest address */
  11. #define WORDS_REVERSED /* high order word has lowest address */
  12. /*#define LISTING /* enable listing facilities */
  13. #define RELOCATION /* generate relocatable code */
  14. #define DEBUG 0
  15. #undef valu_t
  16. #define valu_t long
  17. #undef ADDR_T
  18. #define ADDR_T long
  19. #undef ASC_LPAR
  20. #define ASC_LPAR '{'
  21. #undef ASC_RPAR
  22. #define ASC_RPAR '}'
  23. #undef ALIGNWORD
  24. #define ALIGNWORD 2
  25. #undef ALIGNSECT
  26. #define ALIGNSECT 2
  27. #undef VALWIDTH
  28. #define VALWIDTH 8