Hi Supercim,
Welcome to the forum.
There are three methods to use asm with Pelle's C compiler:
i) inline assemby, code from the help file:
Examples:
__asm
{
push ebp
mov ebp, esp
sub esp, __LOCAL_SIZE
}
Alternatively, you can put __asm in front of each assembly instruction:
__asm push ebp
__asm mov ebp, esp
__asm sub esp, __LOCAL_SIZE
ii)External asm modules coded with an assembler like Microsoft MASM
iii)asm source files which can be processed by pocc, the compiler. The syntax is similar to Nasm