I was looking at some hexadecimal code and someone told me to look at offset : 0x830880EC stored as little endian, but what does this mean? Browsing through the offsets listed in HxD Workshop, I see nothing like this, I am pretty sure that 0x is just some form of prefix or something, but I do not know what it means. Could someone help me? Thanks in advance!

link|improve this question
I think following link can help you derive your answers: stackoverflow.com/questions/141262/… – ankit jalori Feb 12 at 17:28
I do not exactly understand what that means especially because the example he uses is with a different size number – user1205336 Feb 12 at 21:54
feedback

1 Answer

You probably want to search for the value 0x830880EC and fetch corresponding offset. 0x is prefix added to hexadecimal number so actual hexadecimal number is 830880EC. You can search for this number and if you do not find it try after changing endianness (byte order). If we suppose that 83 08 80 EC is big endian then EC 80 08 83 would be little endian or vice-versa. Once you find the value you should be able to calculate corresponding offset.

link|improve this answer
Thanks I'll try that! – user1205336 Feb 13 at 21:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.