Chris@43: Chris@43: Summary Chris@43: ------- Chris@43: This directory contains ASM implementations of the functions Chris@43: longest_match() and inflate_fast(). Chris@43: Chris@43: Chris@43: Use instructions Chris@43: ---------------- Chris@43: Assemble using MASM, and copy the object files into the zlib source Chris@43: directory, then run the appropriate makefile, as suggested below. You can Chris@43: donwload MASM from here: Chris@43: Chris@43: http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=7a1c9da0-0510-44a2-b042-7ef370530c64 Chris@43: Chris@43: You can also get objects files here: Chris@43: Chris@43: http://www.winimage.com/zLibDll/zlib124_masm_obj.zip Chris@43: Chris@43: Build instructions Chris@43: ------------------ Chris@43: * With Microsoft C and MASM: Chris@43: nmake -f win32/Makefile.msc LOC="-DASMV -DASMINF" OBJA="match686.obj inffas32.obj" Chris@43: Chris@43: * With Borland C and TASM: Chris@43: make -f win32/Makefile.bor LOCAL_ZLIB="-DASMV -DASMINF" OBJA="match686.obj inffas32.obj" OBJPA="+match686c.obj+match686.obj+inffas32.obj" Chris@43: