summaryrefslogtreecommitdiff
path: root/contrib/asm386/gvmat32.asm
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/asm386/gvmat32.asm')
-rw-r--r--contrib/asm386/gvmat32.asm25
1 files changed, 13 insertions, 12 deletions
diff --git a/contrib/asm386/gvmat32.asm b/contrib/asm386/gvmat32.asm
index b175871..2918a5d 100644
--- a/contrib/asm386/gvmat32.asm
+++ b/contrib/asm386/gvmat32.asm
@@ -53,17 +53,19 @@
53@lmtype TYPEDEF PROTO C :PTR , :SDWORD 53@lmtype TYPEDEF PROTO C :PTR , :SDWORD
54longest_match_c PROTO @lmtype 54longest_match_c PROTO @lmtype
55 55
56 dep_max_chain_length equ 70h 56 ; all the +4 offsets are due to the addition of pending_buf_size
57 dep_window equ 2ch 57 ; in the deflate_state structure since the asm code was first written
58 dep_strstart equ 60h 58 dep_chain_length equ 70h+4
59 dep_prev_length equ 6ch 59 dep_window equ 2ch+4
60 dep_nice_match equ 84h 60 dep_strstart equ 60h+4
61 dep_w_size equ 20h 61 dep_prev_length equ 6ch+4
62 dep_prev equ 34h 62 dep_nice_match equ 84h+4
63 dep_w_mask equ 28h 63 dep_w_size equ 20h+4
64 dep_good_match equ 80h 64 dep_prev equ 34h+4
65 dep_match_start equ 64h 65 dep_w_mask equ 28h+4
66 dep_lookahead equ 68h 66 dep_good_match equ 80h+4
67 dep_match_start equ 64h+4
68 dep_lookahead equ 68h+4
67 69
68 70
69_TEXT segment 71_TEXT segment
@@ -461,4 +463,3 @@ _longest_match_asm7fff endp
461 463
462_TEXT ends 464_TEXT ends
463end 465end
464 \ No newline at end of file