I am looking for a way to locate the raw hex address in a opened file for of a specific command.
for example this command
IL_015F: br.s IL_021E
I wish to locate the address of the the br.s (2B) command being looked at. with justdecompile using a hex editor. My current method is to make the edit and then compare the 2 files to get the hex location. it would be nice to have the option of seeing the current hex memory address in just open.
Another thing that I would like to do is the reverse. To be able to take a command at hex address (0x016F32 for example) and go directly to that command or value in justdecomplile. I am aware that a specific address may be part of a string or other item and not easilly locatable. In my case I would always be looking for a specific opcode or offset value etc.