I\'m playing around with some asm code, and something is bothering me.
I compile this:
#include int main(int argc, char** argv){ p
If you have main.s file. you can generate object file by GCC and also as
GCC
as
# gcc -c main.s # as main.s -o main.o
check this link, it will help you learn some binutils of GCC http://www.thegeekstuff.com/2017/01/gnu-binutils-commands/