zlib/contrib/masmx86/readme.txt

22 lines
573 B
Plaintext
Raw Normal View History

2011-09-10 02:22:37 -04:00
Summary
-------
This directory contains ASM implementations of the functions
longest_match() and inflate_fast().
Use instructions
----------------
Copy these files into the zlib source directory, then run the
appropriate makefile, as suggested below.
Build instructions
------------------
* With Microsoft C and MASM:
2011-09-10 02:32:36 -04:00
nmake -f win32/Makefile.msc LOC="-DASMV -DASMINF" OBJA="match686.obj inffas32.obj"
2011-09-10 02:22:37 -04:00
* With Borland C and TASM:
2011-09-10 02:32:36 -04:00
make -f win32/Makefile.bor LOCAL_ZLIB="-DASMV -DASMINF" OBJA="match686.obj inffas32.obj" OBJPA="+match686c.obj+match686.obj+inffas32.obj"
2011-09-10 02:22:37 -04:00