arch.h 315 B

1234567891011121314151617
  1. #ifndef _ARCH_H
  2. #define _ARCH_H
  3. #ifdef T386
  4. #include "386.h"
  5. #elif Tmips
  6. #include "mips.h"
  7. #elif Tpower
  8. #include "mips.h"
  9. #elif Talpha
  10. #include "alpha.h"
  11. #elif Tarm
  12. #include "arm.h"
  13. #else
  14. I do not know about your architecture.
  15. Update switch in arch.h with new architecture.
  16. #endif /* T386 */
  17. #endif /* _ARCH_H */