diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:27:17 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:27:17 -0700 |
commit | e0ff940e1adb68d3575705ebf1546d9f07ad3b4a (patch) | |
tree | 792ac6996d1225c0955027050296126bc8ff6e26 /contrib/masmx86 | |
parent | 7df877eccdd826e94df53215f65dee639428e83f (diff) | |
download | zlib-1.2.3.8.tar.gz zlib-1.2.3.8.tar.bz2 zlib-1.2.3.8.zip |
zlib 1.2.3.8v1.2.3.8
Diffstat (limited to 'contrib/masmx86')
-rw-r--r-- | contrib/masmx86/bld_ml32.bat | 4 | ||||
-rw-r--r-- | contrib/masmx86/gvmat32.asm | 8 | ||||
-rw-r--r-- | contrib/masmx86/gvmat32.obj | bin | 10241 -> 0 bytes | |||
-rw-r--r-- | contrib/masmx86/inffas32.asm | 4 | ||||
-rw-r--r-- | contrib/masmx86/inffas32.obj | bin | 14893 -> 0 bytes |
5 files changed, 8 insertions, 8 deletions
diff --git a/contrib/masmx86/bld_ml32.bat b/contrib/masmx86/bld_ml32.bat index 99144d0..36962e1 100644 --- a/contrib/masmx86/bld_ml32.bat +++ b/contrib/masmx86/bld_ml32.bat | |||
@@ -1,2 +1,2 @@ | |||
1 | ml /coff /Zi /c /Flgvmat32.lst gvmat32.asm | 1 | ml /coff /Zi /c /Flgvmat32.lst gvmat32.asm |
2 | ml /coff /Zi /c /Flinffas32.lst inffas32.asm | 2 | ml /coff /Zi /c /Flinffas32.lst inffas32.asm |
diff --git a/contrib/masmx86/gvmat32.asm b/contrib/masmx86/gvmat32.asm index 874bb2d..8111616 100644 --- a/contrib/masmx86/gvmat32.asm +++ b/contrib/masmx86/gvmat32.asm | |||
@@ -14,7 +14,7 @@ | |||
14 | ; | 14 | ; |
15 | ; this file contain two implementation of longest_match | 15 | ; this file contain two implementation of longest_match |
16 | ; | 16 | ; |
17 | ; longest_match_7fff : written 1996 by Gilles Vollant optimized for | 17 | ; longest_match_7fff : written 1996 by Gilles Vollant optimized for |
18 | ; first Pentium. Assume s->w_mask == 0x7fff | 18 | ; first Pentium. Assume s->w_mask == 0x7fff |
19 | ; longest_match_686 : written by Brian raiter (1998), optimized for Pentium Pro | 19 | ; longest_match_686 : written by Brian raiter (1998), optimized for Pentium Pro |
20 | ; | 20 | ; |
@@ -39,7 +39,7 @@ | |||
39 | ; | 39 | ; |
40 | ; compile the asm file running | 40 | ; compile the asm file running |
41 | ; ml /coff /Zi /c /Flgvmat32.lst /DNOOLDPENTIUMCODE gvmat32.asm | 41 | ; ml /coff /Zi /c /Flgvmat32.lst /DNOOLDPENTIUMCODE gvmat32.asm |
42 | ; and do not include gvmat32c.c in your project (ou define also | 42 | ; and do not include gvmat32c.c in your project (ou define also |
43 | ; NOOLDPENTIUMCODE) | 43 | ; NOOLDPENTIUMCODE) |
44 | ; | 44 | ; |
45 | ; note : as I known, longest_match_686 is very faster than longest_match_7fff | 45 | ; note : as I known, longest_match_686 is very faster than longest_match_7fff |
@@ -113,7 +113,7 @@ IFDEF NOUNDERLINE | |||
113 | IFDEF NOOLDPENTIUMCODE | 113 | IFDEF NOOLDPENTIUMCODE |
114 | public longest_match | 114 | public longest_match |
115 | public match_init | 115 | public match_init |
116 | ELSE | 116 | ELSE |
117 | public longest_match_7fff | 117 | public longest_match_7fff |
118 | public cpudetect32 | 118 | public cpudetect32 |
119 | public longest_match_686 | 119 | public longest_match_686 |
@@ -959,7 +959,7 @@ IFDEF NOOLDPENTIUMCODE | |||
959 | _match_init proc near | 959 | _match_init proc near |
960 | ret | 960 | ret |
961 | _match_init endp | 961 | _match_init endp |
962 | ENDIF | 962 | ENDIF |
963 | ELSE | 963 | ELSE |
964 | IFDEF NOUNDERLINE | 964 | IFDEF NOUNDERLINE |
965 | longest_match_686 endp | 965 | longest_match_686 endp |
diff --git a/contrib/masmx86/gvmat32.obj b/contrib/masmx86/gvmat32.obj deleted file mode 100644 index ebb3262..0000000 --- a/contrib/masmx86/gvmat32.obj +++ /dev/null | |||
Binary files differ | |||
diff --git a/contrib/masmx86/inffas32.asm b/contrib/masmx86/inffas32.asm index 05c46dd..92ac22a 100644 --- a/contrib/masmx86/inffas32.asm +++ b/contrib/masmx86/inffas32.asm | |||
@@ -16,7 +16,7 @@ | |||
16 | ; * enabled. I will attempt to merge the MMX code into this version. Newer | 16 | ; * enabled. I will attempt to merge the MMX code into this version. Newer |
17 | ; * versions of this and inffast.S can be found at | 17 | ; * versions of this and inffast.S can be found at |
18 | ; * http://www.eetbeetee.com/zlib/ and http://www.charm.net/~christop/zlib/ | 18 | ; * http://www.eetbeetee.com/zlib/ and http://www.charm.net/~christop/zlib/ |
19 | ; * | 19 | ; * |
20 | ; * 2005 : modification by Gilles Vollant | 20 | ; * 2005 : modification by Gilles Vollant |
21 | ; */ | 21 | ; */ |
22 | ; For Visual C++ 4.x and higher and ML 6.x and higher | 22 | ; For Visual C++ 4.x and higher and ML 6.x and higher |
@@ -33,7 +33,7 @@ | |||
33 | 33 | ||
34 | 34 | ||
35 | ; zlib122sup is 0 fort zlib 1.2.2.1 and lower | 35 | ; zlib122sup is 0 fort zlib 1.2.2.1 and lower |
36 | ; zlib122sup is 8 fort zlib 1.2.2.2 and more (with addition of dmax and head | 36 | ; zlib122sup is 8 fort zlib 1.2.2.2 and more (with addition of dmax and head |
37 | ; in inflate_state in inflate.h) | 37 | ; in inflate_state in inflate.h) |
38 | zlib1222sup equ 8 | 38 | zlib1222sup equ 8 |
39 | 39 | ||
diff --git a/contrib/masmx86/inffas32.obj b/contrib/masmx86/inffas32.obj deleted file mode 100644 index bd6664d..0000000 --- a/contrib/masmx86/inffas32.obj +++ /dev/null | |||
Binary files differ | |||