User`s guide

E-2
Big Endian To Little Endian Conversion
1. First, swap the big endian bits, use the conversion chart to find
the equivalent values. For example:
00 00 F6 09 47 88
00 00 6F 90 74 88
2. Now that you have the bits swapped, use the conversion chart
to find the equivalent values. For example:
0 = 0
6 = 6
F = F
9 = 9
7 = E
4 = 2
8 = 1
So the little endian equivalent is 00 00 6F 90 E2 11.