binary - How can I see the 0s and 1s / machine code from a executable file / object file? -


i tried this, opened a.out file text editor bunch of characters instructions in like:

üÙ

try hexdump. like:

$ hexdump -x a.out 

it give that: hexadecimal dump of file.

having said that, possibility might include using gdb's disassemble command.


Comments

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -