home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / packer / zoo / macros.ai < prev    next >
Encoding:
Text File  |  1986-08-27  |  284 b   |  17 lines

  1. ;procedure index, used in-line to save some microseconds
  2. call_index    macro
  3.     mov    si,bx            ;si = bx * 5 (5 byte hash entries)
  4.     shl    si,1            ;si = bx * 2 * 2 + bx
  5.     shl    si,1
  6.     add    si,bx
  7.     endm    
  8.  
  9. malloc    macro    siz
  10.     ifdif    <bx>,<siz>
  11.     mov    bx,siz
  12.     endif
  13.     mov    ah,48h
  14.     int    21h
  15.     endm
  16.  
  17.