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!
feedback
|
|
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. | |||
|
feedback
|