View Single Post
Old 05-07-13, 06:42 PM   #6
TheDarkWraith
Black Magic
 
Join Date: Jun 2007
Posts: 11,962
Downloads: 147
Uploads: 5


Default

Quote:
Originally Posted by volodya61 View Post
Okay

BTW have you noticed TDW's converter has revers conversion.. I mean - 1000 to HEX is 00 00 7A 44.. FloatConvert did it so - 1000 → 44 7A 00 00
The hex number given by the app is it's actual hex value. When working with hex editor you have to take endian type into account. Almost all PCs are little endian by default thus least significant byte is first when viewed in hex editor. Most hex editors let you choose the endian style viewed.

1000 little endian is thus:
00 00 7A 44

1000 big endian is thus:
44 7A 00 00

The app I gave you a link to displays values in big endian notation.
TheDarkWraith is offline   Reply With Quote