]> git.ipfire.org Git - people/ms/u-boot.git/blame - lib_nios2/math.h
ppc4xx: Fix CFG_MONITOR_LEN on Katmai failsave this time
[people/ms/u-boot.git] / lib_nios2 / math.h
CommitLineData
5c952cf0
WD
1#define BITS_PER_UNIT 8
2
3typedef int HItype __attribute__ ((mode (HI)));
4typedef unsigned int UHItype __attribute__ ((mode (HI)));
5
6typedef int SItype __attribute__ ((mode (SI)));
7typedef unsigned int USItype __attribute__ ((mode (SI)));
8
9typedef int word_type __attribute__ ((mode (__word__)));
10
11struct SIstruct {HItype low, high;};
12
13typedef union {
14 struct SIstruct s;
15 SItype ll;
16} SIunion;