projects
/
bertos.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
ARM ABI requires stack to be aligned on a 64-bit boundary
[bertos.git]
/
bertos
/
emul
/
switch_ctx_emul.S
1
#if defined(__i386__)
2
#include "switch_i386.S"
3
#elif defined(__x86_64__)
4
#include "switch_x86_64.s"
5
#elif defined(_ARCH_PPC) || defined(_ARCH_PPC64)
6
#include "switch_ppc.S"
7
#else
8
#error Unknown CPU
9
#endif
10