3/11/2008

Linux assembly programming

ref
you can use
$gcc -S test.c
to compile c code to assembly code(might be at&t style)
then will transform into test.s file
$as test.s
can compile test.s to machine code for execution

No comments: