pull-in emu-lite branch

This commit is contained in:
BVK Chaitanya 2010-05-06 12:55:47 +05:30
commit 16321bf9ca
26 changed files with 316 additions and 345 deletions

View file

@ -2,15 +2,17 @@
#error "This source is only meant for grub-emu platform"
#endif
#if GRUB_CPU_I386
#elif GRUB_CPU_X86_64
#elif GRUB_CPU_SPARC64
#if defined(GRUB_CPU_I386)
/* Nothing is necessary. */
#elif defined(GRUB_CPU_X86_64)
/* Nothing is necessary. */
#elif defined(GRUB_CPU_SPARC64)
#include "../sparc64/cache.S"
#elif GRUB_CPU_MIPS
#elif defined(GRUB_CPU_MIPS)
#include "../mips/cache.S"
#elif GRUB_CPU_MIPSEL
#elif defined(GRUB_CPU_MIPSEL)
#include "../mips/cache.S"
#elif GRUB_CPU_POWERPC
#elif defined(GRUB_CPU_POWERPC)
#include "../powerpc/cache.S"
#else
#error "No target cpu type is defined"