I\'m trying to disassemble a program to see a syscall assembly instruction (the INT instruction, I believe) and the handler with GDB and have written a little program (see b
You can force gcc to output directly to assembly code by adding the -S switch
gcc -S hello.c