1 #ifndef __ASM_ASSEMBLER_H__ 2 #define __ASM_ASSEMBLER_H__ 3 4 #ifndef __ASSEMBLY__ 5 #error "Only include this from assembly code" 6 #endif 7 8 /* Only LE support so far */ 9 #define CPU_BE(x...) 10 #define CPU_LE(x...) x 11 12 #endif /* __ASM_ASSEMBLER_H__ */ 13