How do you use assembler code in GCC (Unix)? In Win you use:
Code:
asm mov ax, 5;

or

asm
{
   mov ax, 5;
}
But that doesn't work in GCC.
Or do you need some extra assembler module or something?