-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathHASPDEF.INC
More file actions
62 lines (62 loc) · 982 Bytes
/
HASPDEF.INC
File metadata and controls
62 lines (62 loc) · 982 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
;
; support address [email protected]
;
;
; Internal emulator definitions
; (c)1998-1999 by MeteO
;
.XLIST
;
; Dongle types
;
HASP3 Equ 0 ; Unused
MemoHASP Equ 1
TimeHASP Equ 3 ; Unused
NetHASP Equ 4
TimeHASP3 Equ 5 ; Unused
;
; Internal variables
;
NOSTRINGS EQU 0 ; If additional string not allowed
;
;CACHEII EQU 0 ; Cache Level II enabled (unused)
;
DEBUGGING EQU 0 ; Trap messages
;OEM EQU 0
;
REGISTERED EQU 0 ; Is emu registered
HASP77 EQU 1 ; Is CRC_06/0E allowed
;
; DIOC calls
;
HASP_DIOC_CALLHASP Equ 1
HASP_DIOC_PARAMS Equ 2
HASP_DIOC_LINPAGELOCK Equ 4
HASP_DIOC_LINPAGEUNLOCK Equ 8
HASP_DIOC_GETVER Equ 10h
HASP_DIOC_RESERVED Equ 20h
;
; Trial date
;
day = 25
month = 01
year = 1999
;
IFNDEF OEM
encryption_byte0 = 4
encryption_byte1 = 7
encryption_byte2 = 0Ah
encryption_byte3 = 0EFh
ELSE
encryption_byte0 = 0
encryption_byte1 = 0
encryption_byte2 = 0
encryption_byte3 = 0
ENDIF
;
MAX_RUN = 5 ; Maximal # of runs
MAX_FRIENDLY_NAME EQU 256
;
.LIST
;
; <EOF>