2003-10-08 23:26:14 +00:00
|
|
|
#define BITS_PER_UNIT 8
|
|
|
|
|
2008-05-20 14:00:29 +00:00
|
|
|
typedef int HItype __attribute__ ((mode (HI)));
|
2003-10-08 23:26:14 +00:00
|
|
|
typedef unsigned int UHItype __attribute__ ((mode (HI)));
|
|
|
|
|
|
|
|
typedef int SItype __attribute__ ((mode (SI)));
|
|
|
|
typedef unsigned int USItype __attribute__ ((mode (SI)));
|
|
|
|
|
|
|
|
typedef int word_type __attribute__ ((mode (__word__)));
|
|
|
|
|
|
|
|
struct SIstruct {HItype low, high;};
|
|
|
|
|
|
|
|
typedef union {
|
|
|
|
struct SIstruct s;
|
|
|
|
SItype ll;
|
|
|
|
} SIunion;
|