
This is my second shot at the image compression compo -- basically it
is a nice preprocessor and a mediocre LZ packer ;)

Files:

  DEPACK.NAS     - the depacker in NASM style assembler

  ENTRY.COM      - the resulting file

  PRE2COM.CPP    - packer source
  PRE2COM.EXE    - packer executable

  RAW2PRE.CPP    - preprocesser source
  RAW2PRE.EXE    - preprocesser executable


There are 2 steps in packing the file:

  RAW2PRE HUGI.RAW         ; reads HUGI.RAW and creates the files
                           ; ENTRY.PRE and ENTRY.PAL

  PRE2COM ENTRY.PRE        ; reads ENTRY.PRE and ENTRY.PAL and
                           ; creates the final ENTRY.COM

  RAW2PRE splits the raw file into palette and image data, and does
  preprocessing on both.

  PRE2COM reads the preprocessed data and packs them.

