Subversion Repositories Kolibri OS

Rev

Rev 6461 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6461 Rev 6465
Line 14... Line 14...
14
;
14
;
15
;    You should have received a copy of the GNU General Public License
15
;    You should have received a copy of the GNU General Public License
16
;    along with this program.  If not, see .
16
;    along with this program.  If not, see .
Line 17... Line -...
17
 
-
 
18
 
-
 
19
CRC32_HASH_SIZE = 4
-
 
20
CRC32_ALIGN = 4
-
 
21
CRC32_ALIGN_MASK = CRC32_ALIGN - 1
-
 
22
 
-
 
23
struct ctx_crc32
-
 
24
        hash    rd 1
-
 
25
ends
-
 
26
 
17
 
27
 
18
 
28
proc crc32.init _ctx
19
proc crc32.init _ctx
29
        mov     ebx, [_ctx]
20
        mov     ebx, [_ctx]
30
        lea     edi, [ebx + ctx_crc32.hash]
21
        lea     edi, [ebx + ctx_crc32.hash]