Subversion Repositories Kolibri OS

Rev

Rev 6196 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3435 mario79 1
 
2
3
 
4
  .mode         dd ?            ; read
5
  .start_block  dd ?            ; first block
6
  .blocks       dd ?            ; 512 bytes
7
  .address      dd ?
8
  .workarea     dd ?
9
fname rb 4096            ; filename
10
11
 
12
 write_info:
13
  .mode         dd ?
14
  rd 1
15
  .bytes2write  dd ?
16
  .address      dd ?
17
  .workarea     dd ?
18
end virtual
19
20
 
21
  .mode         dd ?            ; read
22
  .start_block  dd ?            ; first block
23
  .blocks       dd ?            ; 512 bytes
24
  .address      dd ?
25
  .workarea     dd ?
26
skin_info rb 4096
27
28
 
29
30
 
31
app_colours:
32
33
 
34
w_grab               dd ?
35
w_work_dark          dd ?
7786 leency 36
w_work_light         dd ?
37
w_grab_text          dd ?
3435 mario79 38
w_work               dd ?
39
w_work_button        dd ?
40
w_work_button_text   dd ?
41
w_work_text          dd ?
42
w_work_graph         dd ?
43
44
 
45
	times 10 dd ?
46
47
 
48
;---------------------------------------------------------------------
49
align 4
50
cur_dir_path:
51
	rb 4096
52
;---------------------------------------------------------------------
53
library_path:
54
	rb 4096
55
;---------------------------------------------------------------------
56
temp_dir_pach:
57
	rb 4096
58
;---------------------------------------------------------------------
59
temp_dir_pach2:
60
	rb 4096
61
;---------------------------------------------------------------------
62
text_work_area:
63
	rb 1024
64
;---------------------------------------------------------------------
65
text_work_area2:
66
	rb 1024
67
;---------------------------------------------------------------------
68
procinfo:
69
	rb 1024
70
;---------------------------------------------------------------------
71
filename_area:
72
	rb 256
73
;---------------------------------------------------------------------
74
filename_area2:
75
	rb 256
76
;---------------------------------------------------------------------
77
	rb 4096
78
stacktop:
79
;---------------------------------------------------------------------
80
file_load_area:	; old 0x10000
81
	rb 32*1024
82
;---------------------------------------------------------------------
83
not_packed_area:	; old 0x18000
84
	rb 32*1024
85
;---------------------------------------------------------------------
86
unpack_area:	; old 0x20000
87
	rb 32*1024
88
;---------------------------------------------------------------------
89