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