Subversion Repositories Kolibri OS

Rev

Rev 1671 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. ;* Call: ***************************************************************
  2. ; lzma_set_dict_size(unsigned logdictsize)
  3. lzma_set_dict_size:
  4.         mov     ecx,[esp+4]
  5.         xor     eax,eax
  6.         inc     eax
  7.         shl     eax,cl
  8.         mov     [_dictionarySize],eax
  9.         lea     eax,[ecx+ecx]
  10.         mov     [_distTableSize],eax
  11.         ret     4
  12. ;*****************************************************************************
  13.