|
The file you're editing is a HEX file which is an ASCII representation of a binary file thats commonly used for programmers and such.
So when you're look at 0x64 in the HEX file, its the wrong place, you have to convert the .HEX file to a .BIN file, use hex2bin, there is one on sourceforge, edit that binary file, and convert it back to a .HEX file.
However i converted that file to a .BIN and looked at offset 0x64 and its 0x0319, so it still seems wrong, their docs are a little odd.
But if you look for 0xEE 0x30 you'll see it only exists at 0xC8, and the docs list 0x30(C9) but oddly in the 2.4 revision table, and if you look at the 2.8 revision its 0x30(EE)
so i think the docs are screwy.
|