summaryrefslogtreecommitdiff
path: root/contrib/masmx86/readme.txt
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2011-09-09 23:34:30 -0700
committerMark Adler <madler@alumni.caltech.edu>2011-09-09 23:34:30 -0700
commit7147f24cd7b27dd95f6e841851a111cb311a9c07 (patch)
tree1492bbbb8828513c8ad129adff414b2ba724aa03 /contrib/masmx86/readme.txt
parent05d47d2627a68a15ba23fb10b17fbc73551aeec1 (diff)
downloadzlib-1.2.4.2.tar.gz
zlib-1.2.4.2.tar.bz2
zlib-1.2.4.2.zip
zlib 1.2.4.2v1.2.4.2
Diffstat (limited to 'contrib/masmx86/readme.txt')
-rw-r--r--contrib/masmx86/readme.txt52
1 files changed, 26 insertions, 26 deletions
diff --git a/contrib/masmx86/readme.txt b/contrib/masmx86/readme.txt
index 90230f2..3271f72 100644
--- a/contrib/masmx86/readme.txt
+++ b/contrib/masmx86/readme.txt
@@ -1,27 +1,27 @@
1 1
2Summary 2Summary
3------- 3-------
4This directory contains ASM implementations of the functions 4This directory contains ASM implementations of the functions
5longest_match() and inflate_fast(). 5longest_match() and inflate_fast().
6 6
7 7
8Use instructions 8Use instructions
9---------------- 9----------------
10Assemble using MASM, and copy the object files into the zlib source 10Assemble using MASM, and copy the object files into the zlib source
11directory, then run the appropriate makefile, as suggested below. You can 11directory, then run the appropriate makefile, as suggested below. You can
12donwload MASM from here: 12donwload MASM from here:
13 13
14 http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=7a1c9da0-0510-44a2-b042-7ef370530c64 14 http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=7a1c9da0-0510-44a2-b042-7ef370530c64
15 15
16You can also get objects files here: 16You can also get objects files here:
17 17
18 http://www.winimage.com/zLibDll/zlib124_masm_obj.zip 18 http://www.winimage.com/zLibDll/zlib124_masm_obj.zip
19 19
20Build instructions 20Build instructions
21------------------ 21------------------
22* With Microsoft C and MASM: 22* With Microsoft C and MASM:
23nmake -f win32/Makefile.msc LOC="-DASMV -DASMINF" OBJA="match686.obj inffas32.obj" 23nmake -f win32/Makefile.msc LOC="-DASMV -DASMINF" OBJA="match686.obj inffas32.obj"
24 24
25* With Borland C and TASM: 25* With Borland C and TASM:
26make -f win32/Makefile.bor LOCAL_ZLIB="-DASMV -DASMINF" OBJA="match686.obj inffas32.obj" OBJPA="+match686c.obj+match686.obj+inffas32.obj" 26make -f win32/Makefile.bor LOCAL_ZLIB="-DASMV -DASMINF" OBJA="match686.obj inffas32.obj" OBJPA="+match686c.obj+match686.obj+inffas32.obj"
27 27