mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-07 00:35:39 +02:00
objdump: add intel syntax command (#8402)
This commit is contained in:
parent
be8233b8bb
commit
e70b607b7b
1 changed files with 5 additions and 1 deletions
|
@ -7,10 +7,14 @@
|
||||||
|
|
||||||
`objdump -f {{binary}}`
|
`objdump -f {{binary}}`
|
||||||
|
|
||||||
- Display the dis-assembled output of executable sections:
|
- Display the disassembled output of executable sections:
|
||||||
|
|
||||||
`objdump -d {{binary}}`
|
`objdump -d {{binary}}`
|
||||||
|
|
||||||
|
- Display the disassembled executable sections in intel syntax:
|
||||||
|
|
||||||
|
`objdump -M intel -d {{binary}}`
|
||||||
|
|
||||||
- Display a complete binary hex dump of all sections:
|
- Display a complete binary hex dump of all sections:
|
||||||
|
|
||||||
`objdump -s {{binary}}`
|
`objdump -s {{binary}}`
|
||||||
|
|
Loading…
Add table
Reference in a new issue