I am trying to find a call function in a binary file, so I tried this:
- Compile my code (in C),
- Use the command:
mips-mti-linux-gnu-objdump -d myapp.elf> objdump.txt
- My function in objdump.txt file:
9d003350: 42000828 myfunction 0x1
Now, I want to identify this function in myapp.bin when reading this from memory. But, I get this: 28080042
.
I tried to use the command: xxd -ps myapp.bin> xxd.txt
Just can find: 28080042
.
Is it possible to do that?