diff options
Diffstat (limited to 'contrib/masmx86/inffas32.asm')
-rw-r--r-- | contrib/masmx86/inffas32.asm | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/contrib/masmx86/inffas32.asm b/contrib/masmx86/inffas32.asm index 92ac22a..03d20f8 100644 --- a/contrib/masmx86/inffas32.asm +++ b/contrib/masmx86/inffas32.asm | |||
@@ -73,11 +73,6 @@ inflate_fast_use_mmx: | |||
73 | 73 | ||
74 | 74 | ||
75 | _TEXT segment | 75 | _TEXT segment |
76 | PUBLIC _inflate_fast | ||
77 | |||
78 | ALIGN 4 | ||
79 | _inflate_fast: | ||
80 | jmp inflate_fast_entry | ||
81 | 76 | ||
82 | 77 | ||
83 | 78 | ||
@@ -163,7 +158,8 @@ distbits_state equ (76+4+zlib1222sup) ;/* state->distbits */ | |||
163 | ;SECTION .text | 158 | ;SECTION .text |
164 | 159 | ||
165 | ALIGN 4 | 160 | ALIGN 4 |
166 | inflate_fast_entry: | 161 | _inflate_fast proc near |
162 | .FPO (16, 4, 0, 0, 1, 0) | ||
167 | push edi | 163 | push edi |
168 | push esi | 164 | push esi |
169 | push ebp | 165 | push ebp |
@@ -1078,6 +1074,7 @@ L_done: | |||
1078 | pop esi | 1074 | pop esi |
1079 | pop edi | 1075 | pop edi |
1080 | ret | 1076 | ret |
1077 | _inflate_fast endp | ||
1081 | 1078 | ||
1082 | _TEXT ends | 1079 | _TEXT ends |
1083 | end | 1080 | end |