~ubuntu-branches/ubuntu/precise/arj/precise-security

« back to all changes in this revision

Viewing changes to integr.asm

  • Committer: Bazaar Package Importer
  • Author(s): Guillem Jover
  • Date: 2004-06-27 08:07:09 UTC
  • Revision ID: james.westby@ubuntu.com-20040627080709-1gkxm72ex66gkwe4
Tags: upstream-3.10.21
ImportĀ upstreamĀ versionĀ 3.10.21

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
;*
 
2
;* $Id: integr.asm,v 1.1.1.1 2002/03/28 00:03:01 andrew_belov Exp $
 
3
;* ---------------------------------------------------------------------------
 
4
;* Data template for integrity check is stored in this  file. It must be first
 
5
;* in the linking chain in order to be accessible for the  check routine. This
 
6
;* module is to be compiled with Microsoft MASM v 6.0 or later.
 
7
;*
 
8
 
 
9
INCLUDE         ASM_INCL.INC
 
10
 
 
11
.CODE _TEXT
 
12
 
 
13
;*
 
14
;* A unique pattern for locating the data area
 
15
;*
 
16
 
 
17
                dw      3B0h, 2B0h, 3B0h, 4B0h, 5B0h
 
18
 
 
19
;*
 
20
;* Data storage
 
21
;*
 
22
 
 
23
crc             dd      90909090h       ; CRC32 of the remainder
 
24
len             dd      90909090h       ; (file length)+2
 
25
 
 
26
;*
 
27
;* Ending sequence
 
28
;*
 
29
 
 
30
                dw      1B0h, 1B0h, 0C3h
 
31
 
 
32
                end