URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [binutils/] [ar/] [endian.h] - Rev 99
Go to most recent revision | Compare with Previous | Blame | View Log
/* * endian.h -- endianness conversions */ #ifndef _ENDIAN_H_ #define _ENDIAN_H_ unsigned int read4FromEco(unsigned char *p); void write4ToEco(unsigned char *p, unsigned int data); void conv4FromEcoToNative(unsigned char *p); void conv4FromNativeToEco(unsigned char *p); #endif /* _ENDIAN_H_ */
Go to most recent revision | Compare with Previous | Blame | View Log