1N/A#ifndef ETHERBOOT_ENDIAN_H
1N/A#define ETHERBOOT_ENDIAN_H
1N/A
1N/A/* Definitions for byte order, according to significance of bytes,
1N/A from low addresses to high addresses. The value is what you get by
1N/A putting '4' in the most significant byte, '3' in the second most
1N/A significant byte, '2' in the second least significant byte, and '1'
1N/A in the least significant byte, and then writing down one digit for
1N/A each byte, starting with the byte at the lowest address at the left,
1N/A and proceeding to the byte with the highest address at the right. */
1N/A
1N/A#define __LITTLE_ENDIAN 1234
1N/A#define __BIG_ENDIAN 4321
1N/A#define __PDP_ENDIAN 3412
1N/A
1N/A#include "i386_endian.h"
1N/A
1N/A
1N/A#endif /* ETHERBOOT_ENDIAN_H */