1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-03 22:15:42 +02:00

objdump: add intel syntax command (#8402)

This commit is contained in:
jxu 2022-08-27 10:13:55 -04:00 committed by GitHub
parent be8233b8bb
commit e70b607b7b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,10 +7,14 @@
`objdump -f {{binary}}`
- Display the dis-assembled output of executable sections:
- Display the disassembled output of executable sections:
`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:
`objdump -s {{binary}}`