PASM - Pre ASMembler
--------------------

  This pre-compiler allows you to insert strings within ASM files.
It simply looks for "" and exchanges it with an offset to the string
that is placed in the data segment.

  Usage:  PASM file.asm

  It will go thru all included files and output each file into \pasm.tmp.
Another output file called _STR_.TMP holds all the strings and must
be included into the input ASM file.
  To do this you must have the following remark somewhere in your source:
;;_include_pasm_strings;;
  This special remark is placed in QLIB.INC so if you already include this
file (as you always should) then you'll have no problems.
  PASM also performs C type conversions (such as \r = 10).
  PASM is used with the TASM, MASM and WASM BAT files.

Here are some examples:
  mov edx,"\n Hello \n"
  mov ah,9
  int 21h

  invoke printf,"Hello, world.  AX=%w\n",ax

