cache_s.S 417 B

123456789101112131415
  1. #ifndef GRUB_MACHINE_EMU
  2. #error "This source is only meant for grub-emu platform"
  3. #endif
  4. #if defined(__i386__) || defined(__x86_64__)
  5. /* Nothing is necessary. */
  6. #elif defined(__sparc__)
  7. #include "../sparc64/cache.S"
  8. #elif defined(__powerpc__)
  9. #include "../powerpc/cache.S"
  10. #elif defined(__ia64__) || defined(__arm__) || defined(__aarch64__) || defined(__mips__)
  11. #else
  12. #error "No target cpu type is defined"
  13. #endif