mach0.c 620 B

12345678910111213141516171819202122232425262728
  1. #define DUK
  2. /* @(#)mach0.c 1.5 */
  3. /*
  4. * Motorola 68000/68010 options
  5. */
  6. #undef BITMAX
  7. #define BITMAX 8000
  8. #define THREE_PASS /* branch and offset optimization */
  9. #define BYTES_REVERSED /* high order byte has lowest address */
  10. #define WORDS_REVERSED /* high order word has lowest address */
  11. #define LISTING /* enable listing facilities */
  12. #define RELOCATION /* generate relocatable code */
  13. #undef valu_t
  14. #define valu_t long
  15. #undef addr_t
  16. #define addr_t long
  17. #undef ALIGNWORD
  18. #define ALIGNWORD 2
  19. #undef ALIGNSECT
  20. #define ALIGNSECT 2
  21. #undef VALWIDTH
  22. #define VALWIDTH 8
  23. #define NOLD /* Added by Duk Bekema. */