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

25 years ago
  1. {
  2. #if CL_DS_BIG_ENDIAN_P
  3. #if (intDsize==8)
  4. D1(0xEA), D1(0x7C), D1(0xB8), D1(0x9F), D1(0x40), D1(0x9A), D1(0xE8), D1(0x45)
  5. #endif
  6. #if (intDsize==16)
  7. D2(0xEA,0x7C), D2(0xB8,0x9F), D2(0x40,0x9A), D2(0xE8,0x45)
  8. #endif
  9. #if (intDsize==32)
  10. D4(0xEA,0x7C,0xB8,0x9F), D4(0x40,0x9A,0xE8,0x45)
  11. #endif
  12. #if (intDsize==64)
  13. D8(0xEA,0x7C,0xB8,0x9F,0x40,0x9A,0xE8,0x45)
  14. #endif
  15. #else
  16. #if (intDsize==8)
  17. D1(0x45), D1(0xE8), D1(0x9A), D1(0x40), D1(0x9F), D1(0xB8), D1(0x7C), D1(0xEA)
  18. #endif
  19. #if (intDsize==16)
  20. D2(0xE8,0x45), D2(0x40,0x9A), D2(0xB8,0x9F), D2(0xEA,0x7C)
  21. #endif
  22. #if (intDsize==32)
  23. D4(0x40,0x9A,0xE8,0x45), D4(0xEA,0x7C,0xB8,0x9F)
  24. #endif
  25. #if (intDsize==64)
  26. D8(0xEA,0x7C,0xB8,0x9F,0x40,0x9A,0xE8,0x45)
  27. #endif
  28. #endif
  29. } ;