mach0.c 623 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * $Source$
  3. * $State$
  4. */
  5. #define THREE_PASS /* branch and offset optimization */
  6. #define BYTES_REVERSED /* high order byte has lowest address */
  7. #define WORDS_REVERSED /* high order word has lowest address */
  8. #define LISTING /* enable listing facilities */
  9. #define RELOCATION /* generate relocatable code */
  10. #define DEBUG 0
  11. #undef valu_t
  12. #define valu_t long
  13. #undef ADDR_T
  14. #define ADDR_T long
  15. #undef word_t
  16. #define word_t long
  17. #undef ALIGNWORD
  18. #define ALIGNWORD 4
  19. #undef ALIGNSECT
  20. #define ALIGNSECT 4
  21. #undef VALWIDTH
  22. #define VALWIDTH 8
  23. #define FIXUPFLAGS (RELBR | RELWR)