Skip to content

Instantly share code, notes, and snippets.

View vaishnavachath's full-sized avatar
🎯
Focusing

Vaishnav M A vaishnavachath

🎯
Focusing
  • Bengaluru, Karnataka, India
View GitHub Profile
@vaishnavachath
vaishnavachath / disassemble.md
Created June 9, 2020 19:35 — forked from jarun/disassemble.md
Guide to disassemble

prerequisites

  • Compile the program in gcc with debug symbols enabled (-g)
  • Do NOT strip the binary
  • To generate assembly code using gcc use the -S option: gcc -S hello.c

utilities

objdump