iASM is a utility to allow you to insert simple asm {} blocks in C programs
for the Watcom compiler.

It works the same as PASM by taking a file and producing a single output
file the contains all the C code in one massive file.  The output is always
c.tmp.

This is already put in the wc2exe & wc2obj BAT files.

eg:

void my_func(void) {
  asm {
    mov eax,13h
    int 10h
  }
}

You can also use single line asm instructions
 ie :  asm mov ax,13h


TTYL

