arch.h 347 B

12345678910111213141516171819
  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. #elif Tamd64
  14. #include "amd64.h"
  15. #else
  16. I do not know about your architecture.
  17. Update switch in arch.h with new architecture.
  18. #endif /* T386 */
  19. #endif /* _ARCH_H */