annotate zlib/contrib/masmx86/readme.txt @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents ae3a4bfb450b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents: 51
diff changeset
1
kono
parents: 51
diff changeset
2 Summary
kono
parents: 51
diff changeset
3 -------
kono
parents: 51
diff changeset
4 This directory contains ASM implementations of the functions
kono
parents: 51
diff changeset
5 longest_match() and inflate_fast().
kono
parents: 51
diff changeset
6
kono
parents: 51
diff changeset
7
kono
parents: 51
diff changeset
8 Use instructions
kono
parents: 51
diff changeset
9 ----------------
kono
parents: 51
diff changeset
10 Assemble using MASM, and copy the object files into the zlib source
kono
parents: 51
diff changeset
11 directory, then run the appropriate makefile, as suggested below. You can
kono
parents: 51
diff changeset
12 donwload MASM from here:
kono
parents: 51
diff changeset
13
kono
parents: 51
diff changeset
14 http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=7a1c9da0-0510-44a2-b042-7ef370530c64
kono
parents: 51
diff changeset
15
kono
parents: 51
diff changeset
16 You can also get objects files here:
kono
parents: 51
diff changeset
17
kono
parents: 51
diff changeset
18 http://www.winimage.com/zLibDll/zlib124_masm_obj.zip
kono
parents: 51
diff changeset
19
kono
parents: 51
diff changeset
20 Build instructions
kono
parents: 51
diff changeset
21 ------------------
kono
parents: 51
diff changeset
22 * With Microsoft C and MASM:
kono
parents: 51
diff changeset
23 nmake -f win32/Makefile.msc LOC="-DASMV -DASMINF" OBJA="match686.obj inffas32.obj"
kono
parents: 51
diff changeset
24
kono
parents: 51
diff changeset
25 * With Borland C and TASM:
kono
parents: 51
diff changeset
26 make -f win32/Makefile.bor LOCAL_ZLIB="-DASMV -DASMINF" OBJA="match686.obj inffas32.obj" OBJPA="+match686c.obj+match686.obj+inffas32.obj"
kono
parents: 51
diff changeset
27