annotate src/zlib-1.2.7/contrib/masmx86/readme.txt @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents 8a15ff55d9af
children
rev   line source
cannam@89 1
cannam@89 2 Summary
cannam@89 3 -------
cannam@89 4 This directory contains ASM implementations of the functions
cannam@89 5 longest_match() and inflate_fast().
cannam@89 6
cannam@89 7
cannam@89 8 Use instructions
cannam@89 9 ----------------
cannam@89 10 Assemble using MASM, and copy the object files into the zlib source
cannam@89 11 directory, then run the appropriate makefile, as suggested below. You can
cannam@89 12 donwload MASM from here:
cannam@89 13
cannam@89 14 http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=7a1c9da0-0510-44a2-b042-7ef370530c64
cannam@89 15
cannam@89 16 You can also get objects files here:
cannam@89 17
cannam@89 18 http://www.winimage.com/zLibDll/zlib124_masm_obj.zip
cannam@89 19
cannam@89 20 Build instructions
cannam@89 21 ------------------
cannam@89 22 * With Microsoft C and MASM:
cannam@89 23 nmake -f win32/Makefile.msc LOC="-DASMV -DASMINF" OBJA="match686.obj inffas32.obj"
cannam@89 24
cannam@89 25 * With Borland C and TASM:
cannam@89 26 make -f win32/Makefile.bor LOCAL_ZLIB="-DASMV -DASMINF" OBJA="match686.obj inffas32.obj" OBJPA="+match686c.obj+match686.obj+inffas32.obj"
cannam@89 27