You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
778 B
29 lines
778 B
{
|
|
#if CL_DS_BIG_ENDIAN_P
|
|
#if (intDsize==8)
|
|
D1(0xEA), D1(0x7C), D1(0xB8), D1(0x9F), D1(0x40), D1(0x9A), D1(0xE8), D1(0x45)
|
|
#endif
|
|
#if (intDsize==16)
|
|
D2(0xEA,0x7C), D2(0xB8,0x9F), D2(0x40,0x9A), D2(0xE8,0x45)
|
|
#endif
|
|
#if (intDsize==32)
|
|
D4(0xEA,0x7C,0xB8,0x9F), D4(0x40,0x9A,0xE8,0x45)
|
|
#endif
|
|
#if (intDsize==64)
|
|
D8(0xEA,0x7C,0xB8,0x9F,0x40,0x9A,0xE8,0x45)
|
|
#endif
|
|
#else
|
|
#if (intDsize==8)
|
|
D1(0x45), D1(0xE8), D1(0x9A), D1(0x40), D1(0x9F), D1(0xB8), D1(0x7C), D1(0xEA)
|
|
#endif
|
|
#if (intDsize==16)
|
|
D2(0xE8,0x45), D2(0x40,0x9A), D2(0xB8,0x9F), D2(0xEA,0x7C)
|
|
#endif
|
|
#if (intDsize==32)
|
|
D4(0x40,0x9A,0xE8,0x45), D4(0xEA,0x7C,0xB8,0x9F)
|
|
#endif
|
|
#if (intDsize==64)
|
|
D8(0xEA,0x7C,0xB8,0x9F,0x40,0x9A,0xE8,0x45)
|
|
#endif
|
|
#endif
|
|
} ;
|