This commit is contained in:
Mark Qvist 2014-04-03 22:21:37 +02:00
commit c898b090dd
1049 changed files with 288572 additions and 0 deletions

View file

@ -0,0 +1,10 @@
#if defined(__i386__)
#include "switch_i386.S"
#elif defined(__x86_64__)
#include "switch_x86_64.s"
#elif defined(_ARCH_PPC) || defined(_ARCH_PPC64)
#include "switch_ppc.S"
#else
#error Unknown CPU
#endif