URL
https://opencores.org/ocsvn/hf-risc/hf-risc/trunk
Subversion Repositories hf-risc
[/] [hf-risc/] [trunk/] [tools/] [riscv-gnu-toolchain-master/] [linux-headers/] [include/] [asm/] [byteorder.h] - Rev 17
Go to most recent revision | Compare with Previous | Blame | View Log
#ifndef _ASM_RISCV_BYTEORDER_H #define _ASM_RISCV_BYTEORDER_H #if defined(__RISCVEL__) #include <linux/byteorder/little_endian.h> #elif defined(__RISCVEB__) #include <linux/byteorder/big_endian.h> #else #error "Unknown endianness" #endif #endif /* _ASM_RISCV_BYTEORDER_H */
Go to most recent revision | Compare with Previous | Blame | View Log