I found this link to quickly learn or convert C to Assembly.
1. http://unixwiz.net/techtips/win32-callconv-asm.html
2. https://godbolt.org/
2. If you have source then with GCC convert to Assembly code:
# gcc -S hello.c
3. If you have only executable then use objdump : (uses executable )
# objdump -d hello.out
4. gdb: gdb list command
No comments:
Post a Comment