home *** CD-ROM | disk | FTP | other *** search
/ BBS 1 / BBS#1.iso / document / compress.arj / LZ.ASI < prev    next >
Text File  |  1992-03-19  |  343b  |  27 lines

  1. ;-------------------------------------------------------------
  2. ;
  3. ;    Project:    YAR compressor
  4. ;    Header:        LZ.ASI
  5. ;
  6. ;
  7. ;    (C) 1991-92 Compact Soft
  8. ;    Written by: cs:dk
  9. ;
  10. ;-------------------------------------------------------------
  11.  
  12.  
  13. .model    small, c
  14.  
  15.  
  16. locals
  17. nojumps
  18.  
  19.  
  20. BookStack    equ    0    ; 1 if using BookStack algorithm
  21.  
  22. BITS    equ    16
  23.  
  24. TREESIZE    equ    16
  25.  
  26.  
  27.