I already tried this, I opened a a.out file with a text editor but I get only a bunch of characters with some instructions in it like:
üÙ
|
I already tried this, I opened a a.out file with a text editor but I get only a bunch of characters with some instructions in it like: üÙ
| |||
|
feedback
|
|
Try
It will give you just that: an hexadecimal dump of the file. Having said that, another possibility might include using GDB's disassemble command. | |||
|
feedback
|
|
Lookup your local friendly Hex Editor. | |||
|
feedback
|
|
To see the disassembly (with opcode bytes) of the code only, not including any file headers:
| |||
|
feedback
|
|
Executable files come in several formats. For Unix/Linux it's ELF: http://en.wikipedia.org/wiki/Executable_and_Linkable_Format For Windows it's PE: http://en.wikipedia.org/wiki/Portable_Executable Use the objdump tools to see the opcodes as others have pointed out | |||
|
feedback
|