mach0.c 810 B

1234567891011121314151617181920212223242526272829303132333435
  1. /* $Header$ */
  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. #undef BITMAX
  10. #define BITMAX 20000
  11. #define THREE_PASS /* branch and offset optimization */
  12. #define BYTES_REVERSED /* high order byte has lowest address */
  13. #define WORDS_REVERSED /* high order word has lowest address */
  14. #define LISTING /* enable listing facilities */
  15. #define RELOCATION /* generate relocatable code */
  16. #define DEBUG 1
  17. #undef valu_t
  18. #define valu_t long
  19. #undef addr_t
  20. #define addr_t long
  21. #undef ASC_LPAR
  22. #define ASC_LPAR '{'
  23. #undef ASC_RPAR
  24. #define ASC_RPAR '}'
  25. #undef ALIGNWORD
  26. #define ALIGNWORD 2
  27. #undef ALIGNSECT
  28. #define ALIGNSECT 2
  29. #undef VALWIDTH
  30. #define VALWIDTH 8