Subversion Repositories Kolibri OS

Rev

Rev 837 | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 837 Rev 2971
1
SYSTEM FUNCTIONS of OS Kolibri 0.7.1.0
1
SYSTEM FUNCTIONS of OS Kolibri 0.7.5.0
2
 
2
 
3
Number of the function is located in the register eax.
3
Number of the function is located in the register eax.
4
The call of the system function is executed by "int 0x40" command.
4
The call of the system function is executed by "int 0x40" command.
5
All registers except explicitly declared in the returned value,
5
All registers except explicitly declared in the returned value,
6
    including eflags, are preserved.
6
    including eflags, are preserved.
7
 
7
 
8
 
8
 
9
======================================================================
9
======================================================================
10
============== Function 0 - define and draw the window. ==============
10
============== Function 0 - define and draw the window. ==============
11
======================================================================
11
======================================================================
12
Defines an application window. Draws a frame of the window, header and
12
Defines an application window. Draws a frame of the window, header and
13
working area. For skinned windows defines standard close and minimize
13
working area. For skinned windows defines standard close and minimize
14
buttons.
14
buttons.
15
Parameters:
15
Parameters:
16
  * eax = 0 - function number
16
  * eax = 0 - function number
17
  * ebx = [coordinate on axis x]*65536 + [size on axis x]
17
  * ebx = [coordinate on axis x]*65536 + [size on axis x]
18
  * ecx = [coordinate on axis y]*65536 + [size on axis y]
18
  * ecx = [coordinate on axis y]*65536 + [size on axis y]
19
  * edx = 0xXYRRGGBB, where:
19
  * edx = 0xXYRRGGBB, where:
20
    * Y = style of the window:
20
    * Y = style of the window:
21
      * Y=0 - type I - fixed-size window
21
      * Y=0 - type I - fixed-size window
22
      * Y=1 - only define window area, draw nothing
22
      * Y=1 - only define window area, draw nothing
23
      * Y=2 - type II - variable-size window
23
      * Y=2 - type II - variable-size window
24
      * Y=3 - skinned window
24
      * Y=3 - skinned window
25
      * Y=4 - skinned fixed-size window
25
      * Y=4 - skinned fixed-size window
26
      * other possible values (from 5 up to 15) are reserved,
26
      * other possible values (from 5 up to 15) are reserved,
27
        function call with such Y is ignored
27
        function call with such Y is ignored
28
    * RR, GG, BB = accordingly red, green, blue components of a color
28
    * RR, GG, BB = accordingly red, green, blue components of a color
29
      of the working area of the window (are ignored for style Y=2)
29
      of the working area of the window (are ignored for style Y=2)
30
    * X = DCBA (bits)
30
    * X = DCBA (bits)
31
      * A = 1 - window has caption; for styles Y=3,4 caption string
31
      * A = 1 - window has caption; for styles Y=3,4 caption string
32
                  must be passed in edi, for other styles use
32
                  must be passed in edi, for other styles use
33
                  subfunction 1 of function 71
33
                  subfunction 1 of function 71
34
      * B = 1 - coordinates of all graphics primitives are relative to
34
      * B = 1 - coordinates of all graphics primitives are relative to
35
                  window client area
35
                  window client area
36
      * C = 1 - don't fill working area on window draw
36
      * C = 1 - don't fill working area on window draw
37
      * D = 0 - normal filling of the working area, 1 - gradient
37
      * D = 0 - normal filling of the working area, 1 - gradient
38
    The following parameters are intended for windows
38
    The following parameters are intended for windows
39
    of a type I and II, and ignored for styles Y=1,3:
39
    of a type I and II, and ignored for styles Y=1,3:
40
  * esi = 0xXYRRGGBB - color of the header
40
  * esi = 0xXYRRGGBB - color of the header
41
    * RR, GG, BB define color
41
    * RR, GG, BB define color
42
    * Y=0 - usual window, Y=1 - unmovable window
42
    * Y=0 - usual window, Y=1 - unmovable window
43
    * X defines a gradient of header: X=0 - no gradient,
43
    * X defines a gradient of header: X=0 - no gradient,
44
      X=8 - usual gradient,
44
      X=8 - usual gradient,
45
      for windows of a type II X=4 - negative gradient
45
      for windows of a type II X=4 - negative gradient
46
    * other values of X and Y are reserved
46
    * other values of X and Y are reserved
47
  * edi = 0x00RRGGBB - color of the frame
47
  * edi = 0x00RRGGBB - color of the frame
48
Returned value:
48
Returned value:
49
  * function does not return value
49
  * function does not return value
50
Remarks:
50
Remarks:
51
  * Position and sizes of the window are installed by the first
51
  * Position and sizes of the window are installed by the first
52
    call of this function and are ignored at subsequent; to change
52
    call of this function and are ignored at subsequent; to change
53
    position and/or sizes of already created window use function 67.
53
    position and/or sizes of already created window use function 67.
54
  * For windows with styles Y=3,4 and caption (A=1) caption string
54
  * For windows with styles Y=3,4 and caption (A=1) caption string
55
    is set by the first call of this function and is ignored
55
    is set by the first call of this function and is ignored
56
    at subsequent (strictly speaking, is ignored after a call to
56
    at subsequent (strictly speaking, is ignored after a call to
57
    subfunction 2 of function 12 - end redraw); to change caption of
57
    subfunction 2 of function 12 - end redraw); to change caption of
58
    already created window use subfunction 1 of function 71.
58
    already created window use subfunction 1 of function 71.
59
  * If the window has appropriate styles, position and/or sizes can be
59
  * If the window has appropriate styles, position and/or sizes can be
60
    changed by user. Current position and sizes can be obtained
60
    changed by user. Current position and sizes can be obtained
61
    by function 9.
61
    by function 9.
62
  * The window must fit on the screen. If the transferred
62
  * The window must fit on the screen. If the transferred
63
    coordinates and sizes do not satisfy to this condition,
63
    coordinates and sizes do not satisfy to this condition,
64
    appropriate coordinate (or, probably, both) is considered as zero,
64
    appropriate coordinate (or, probably, both) is considered as zero,
65
    and if it does not help too, the appropriate size
65
    and if it does not help too, the appropriate size
66
    (or, probably, both) is installed in a size of the screen.
66
    (or, probably, both) is installed in a size of the screen.
67
    
67
    
68
    Further let us designate xpos,ypos,xsize,ysize - values passed
68
    Further let us designate xpos,ypos,xsize,ysize - values passed
69
    in ebx,ecx. The coordinates are resulted concerning
69
    in ebx,ecx. The coordinates are resulted concerning
70
    the left upper corner of the window, which, thus, is set as (0,0),
70
    the left upper corner of the window, which, thus, is set as (0,0),
71
    coordinates of the right lower corner essence (xsize,ysize).
71
    coordinates of the right lower corner essence (xsize,ysize).
72
  * The sizes of the window are understood in sence of coordinates
72
  * The sizes of the window are understood in sence of coordinates
73
    of the right lower corner. This concerns all other functions too.
73
    of the right lower corner. This concerns all other functions too.
74
    It means, that the real sizes are on 1 pixel more.
74
    It means, that the real sizes are on 1 pixel more.
75
  * The window of type I looks as follows:
75
  * The window of type I looks as follows:
76
    * draw external frame of color indicated in edi, 1 pixel in width
76
    * draw external frame of color indicated in edi, 1 pixel in width
77
    * draw header - rectangle with the left upper corner (1,1) and
77
    * draw header - rectangle with the left upper corner (1,1) and
78
      right lower (xsize-1,min(25,ysize)) color indicated in esi
78
      right lower (xsize-1,min(25,ysize)) color indicated in esi
79
      (taking a gradient into account)
79
      (taking a gradient into account)
80
    * if ysize>=26, fill the working area of the window -
80
    * if ysize>=26, fill the working area of the window -
81
      rectangle with the left upper corner (1,21) and right lower
81
      rectangle with the left upper corner (1,21) and right lower
82
      (xsize-1,ysize-1) (sizes (xsize-1)*(ysize-21)) with color
82
      (xsize-1,ysize-1) (sizes (xsize-1)*(ysize-21)) with color
83
      indicated in edx (taking a gradient into account)
83
      indicated in edx (taking a gradient into account)
84
    * if A=1 and caption has been already set by subfunction 1
84
    * if A=1 and caption has been already set by subfunction 1
85
      of function 71, it is drawn in the corresponding place of header
85
      of function 71, it is drawn in the corresponding place of header
86
  * The window of style Y=1 looks as follows:
86
  * The window of style Y=1 looks as follows:
87
    * completely defined by the application
87
    * completely defined by the application
88
  * The window of type II looks as follows:
88
  * The window of type II looks as follows:
89
    * draw external frame of width 1 pixel with the "shaded" color
89
    * draw external frame of width 1 pixel with the "shaded" color
90
      edi (all components of the color decrease twice)
90
      edi (all components of the color decrease twice)
91
    * draw intermediate frame of width 3 pixels with color edi
91
    * draw intermediate frame of width 3 pixels with color edi
92
    * draw internal frame of width 1 pixel with the "shaded" color edi
92
    * draw internal frame of width 1 pixel with the "shaded" color edi
93
    * draw header - rectangle with the left upper corner (4,4)
93
    * draw header - rectangle with the left upper corner (4,4)
94
      and right lower (xsize-4,min(20,ysize)) color, indicated in esi
94
      and right lower (xsize-4,min(20,ysize)) color, indicated in esi
95
      (taking a gradient into account)
95
      (taking a gradient into account)
96
    * if ysize>=26, fill the working area of the window -
96
    * if ysize>=26, fill the working area of the window -
97
      rectangle with the left upper corner (5,20) and right lower
97
      rectangle with the left upper corner (5,20) and right lower
98
      (xsize-5,ysize-5) with color indicated in edx
98
      (xsize-5,ysize-5) with color indicated in edx
99
      (taking a gradient into account)
99
      (taking a gradient into account)
100
    * if A=1 and caption has been already set by subfunction 1
100
    * if A=1 and caption has been already set by subfunction 1
101
      of function 71, it is drawn in the corresponding place of header
101
      of function 71, it is drawn in the corresponding place of header
102
  * The skinned window looks as follows:
102
  * The skinned window looks as follows:
103
    * draw external frame of width 1 pixel
103
    * draw external frame of width 1 pixel
104
      with color 'outer' from the skin
104
      with color 'outer' from the skin
105
    * draw intermediate frame of width 3 pixel
105
    * draw intermediate frame of width 3 pixel
106
      with color 'frame' from the skin
106
      with color 'frame' from the skin
107
    * draw internal frame of width 1 pixel
107
    * draw internal frame of width 1 pixel
108
      with color 'inner' from the skin
108
      with color 'inner' from the skin
109
    * draw header (on bitmaps from the skin) in a rectangle
109
    * draw header (on bitmaps from the skin) in a rectangle
110
      (0,0) - (xsize,_skinh-1)
110
      (0,0) - (xsize,_skinh-1)
111
    * if ysize>=26, fill the working area of the window -
111
    * if ysize>=26, fill the working area of the window -
112
      rectangle with the left upper corner (5,_skinh) and right lower
112
      rectangle with the left upper corner (5,_skinh) and right lower
113
      (xsize-5,ysize-5) with color indicated in edx
113
      (xsize-5,ysize-5) with color indicated in edx
114
      (taking a gradient into account)
114
      (taking a gradient into account)
115
    * define two standard buttons: close and minimize
115
    * define two standard buttons: close and minimize
116
      (see function 8)
116
      (see function 8)
117
    * if A=1 and edi contains (nonzero) pointer to caption string,
117
    * if A=1 and edi contains (nonzero) pointer to caption string,
118
      it is drawn in place in header defined in the skin
118
      it is drawn in place in header defined in the skin
119
    * value _skinh is accessible as the result of call
119
    * value _skinh is accessible as the result of call
120
      subfunction 4 of function 48
120
      subfunction 4 of function 48
121
 
121
 
122
======================================================================
122
======================================================================
123
================ Function 1 - put pixel in the window. ===============
123
================ Function 1 - put pixel in the window. ===============
124
======================================================================
124
======================================================================
125
Parameters:
125
Parameters:
126
  * eax = 1 - function number
126
  * eax = 1 - function number
127
  * ebx = x-coordinate (relative to the window)
127
  * ebx = x-coordinate (relative to the window)
128
  * ecx = y-coordinate (relative to the window)
128
  * ecx = y-coordinate (relative to the window)
129
  * edx = 0x00RRGGBB - color of a pixel
129
  * edx = 0x00RRGGBB - color of a pixel
130
    edx = 0x01xxxxxx - invert color of a pixel
130
    edx = 0x01xxxxxx - invert color of a pixel
131
          (low 24 bits are ignored)
131
          (low 24 bits are ignored)
132
Returned value:
132
Returned value:
133
  * function does not return value
133
  * function does not return value
134
 
134
 
135
======================================================================
135
======================================================================
136
============ Function 2 - get the code of the pressed key. ===========
136
============ Function 2 - get the code of the pressed key. ===========
137
======================================================================
137
======================================================================
138
Takes away the code of the pressed key from the buffer.
138
Takes away the code of the pressed key from the buffer.
139
Parameters:
139
Parameters:
140
  * eax = 2 - function number
140
  * eax = 2 - function number
141
Returned value:
141
Returned value:
142
  * if the buffer is empty, function returns eax=1
142
  * if the buffer is empty, function returns eax=1
143
  * if the buffer is not empty, function returns al=0,
143
  * if the buffer is not empty, function returns al=0,
144
    ah=code of the pressed key, high word of eax is zero
144
    ah=code of the pressed key, high word of eax is zero
145
  * if there is "hotkey", function returns al=2,
145
  * if there is "hotkey", function returns al=2,
146
    ah=scancode of the pressed key (0 for control keys),
146
    ah=scancode of the pressed key (0 for control keys),
147
    high word of eax contains a status of control keys at the moment
147
    high word of eax contains a status of control keys at the moment
148
    of pressing a hotkey
148
    of pressing a hotkey
149
Remarks:
149
Remarks:
150
  * There is a common system buffer of the pressed keys
150
  * There is a common system buffer of the pressed keys
151
    by a size of 120 bytes, organized as queue.
151
    by a size of 120 bytes, organized as queue.
152
  * There is one more common system buffer on 120 "hotkeys".
152
  * There is one more common system buffer on 120 "hotkeys".
153
  * If the application with the inactive window calls this function,
153
  * If the application with the inactive window calls this function,
154
    the buffer of the pressed keys is considered to be empty.
154
    the buffer of the pressed keys is considered to be empty.
155
  * By default this function returns ASCII-codes; to switch
155
  * By default this function returns ASCII-codes; to switch
156
    to the scancodes mode (and back) use function 66.
156
    to the scancodes mode (and back) use function 66.
157
    However, hotkeys are always notificated as scancodes.
157
    However, hotkeys are always notificated as scancodes.
158
  * To find out, what keys correspond to what codes, start
158
  * To find out, what keys correspond to what codes, start
159
    the application keyascii and scancode.
159
    the application keyascii and scancode.
160
  * Scancodes come directly from keyboard and are fixed;
160
  * Scancodes come directly from keyboard and are fixed;
161
    ASCII-codes turn out with usage of the conversion tables,
161
    ASCII-codes turn out with usage of the conversion tables,
162
    which can be set by subfunction 2 of function 21
162
    which can be set by subfunction 2 of function 21
163
    and get by subfunction 2 of function 26.
163
    and get by subfunction 2 of function 26.
164
  * As a consequence, ASCII-codes take into account current
164
  * As a consequence, ASCII-codes take into account current
165
    keyboard layout (rus/en) as opposed to scancodes.
165
    keyboard layout (rus/en) as opposed to scancodes.
166
  * This function notifies only about those hotkeys, which were
166
  * This function notifies only about those hotkeys, which were
167
    defined by this thread by subfunction 4 of function 66.
167
    defined by this thread by subfunction 4 of function 66.
168
 
168
 
169
======================================================================
169
======================================================================
170
==================== Function 3 - get system time. ===================
170
==================== Function 3 - get system time. ===================
171
======================================================================
171
======================================================================
172
Parameters:
172
Parameters:
173
  * eax = 3 - function number
173
  * eax = 3 - function number
174
Returned value:
174
Returned value:
175
  * eax = 0x00SSMMHH, where HH:MM:SS = Hours:Minutes:Seconds
175
  * eax = 0x00SSMMHH, where HH:MM:SS = Hours:Minutes:Seconds
176
  * each item is BCD-number, for example,
176
  * each item is BCD-number, for example,
177
    for time 23:59:59 function returns 0x00595923
177
    for time 23:59:59 function returns 0x00595923
178
Remarks:
178
Remarks:
179
  * See also subfunction 9 of function 26 - get time from
179
  * See also subfunction 9 of function 26 - get time from
180
    the moment of start of the system; it is more convenient, because
180
    the moment of start of the system; it is more convenient, because
181
    returns simply DWORD-value of the time counter.
181
    returns simply DWORD-value of the time counter.
182
  * System time can be set by function 22.
182
  * System time can be set by function 22.
183
 
183
 
184
======================================================================
184
======================================================================
185
============ Function 4 - draw text string in the window. ============
185
============ Function 4 - draw text string in the window. ============
186
======================================================================
186
======================================================================
187
Parameters:
187
Parameters:
188
  * eax = 4 - function number
188
  * eax = 4 - function number
189
  * ebx = [coordinate on axis x]*65536 + [coordinate on axis y]
189
  * ebx = [coordinate on axis x]*65536 + [coordinate on axis y]
190
  * ecx = 0xX0RRGGBB, where
190
  * ecx = 0xX0RRGGBB, where
191
    * RR, GG, BB specify text color
191
    * RR, GG, BB specify text color
192
    * X=ABnn (bits):
192
    * X=ABnn (bits):
193
    * nn specifies the used font: 0=system monospaced,
193
    * nn specifies the used font: 0=system monospaced,
194
      1=system font of variable width
194
      1=system font of variable width
195
    * A=0 - output esi characters, A=1 - output ASCIIZ-string
195
    * A=0 - output esi characters, A=1 - output ASCIIZ-string
196
    * B=1 - fill background with the color edi
196
    * B=1 - fill background with the color edi
197
  * edx = pointer to the beginning of the string
197
  * edx = pointer to the beginning of the string
198
  * esi = for A=0 length of the string, must not exceed 255;
198
  * esi = for A=0 length of the string, must not exceed 255;
199
          for A=1 is ignored
199
          for A=1 is ignored
200
Returned value:
200
Returned value:
201
  * function does not return value
201
  * function does not return value
202
Remarks:
202
Remarks:
203
  * First system font is read out at loading from the file char.mt,
203
  * First system font is read out at loading from the file char.mt,
204
    second - from char2.mt.
204
    second - from char2.mt.
205
  * Both fonts have height 9 pixels, width of the monospaced font
205
  * Both fonts have height 9 pixels, width of the monospaced font
206
    is equal to 6 pixels.
206
    is equal to 6 pixels.
207
 
207
 
208
======================================================================
208
======================================================================
209
========================= Function 5 - delay. ========================
209
========================= Function 5 - delay. ========================
210
======================================================================
210
======================================================================
211
Delays execution of the program on the given time.
211
Delays execution of the program on the given time.
212
Parameters:
212
Parameters:
213
  * eax = 5 - function number
213
  * eax = 5 - function number
214
  * ebx = time in the 1/100 of second
214
  * ebx = time in the 1/100 of second
215
Returned value:
215
Returned value:
216
  * function does not return value
216
  * function does not return value
217
Remarks:
217
Remarks:
218
  * Passing ebx=0 does not transfer control to the next process
218
  * Passing ebx=0 does not transfer control to the next process
219
    and does not make any operations at all. If it is really required
219
    and does not make any operations at all. If it is really required
220
    to transfer control to the next process (to complete a current
220
    to transfer control to the next process (to complete a current
221
    time slice), use subfunction 1 of function 68.
221
    time slice), use subfunction 1 of function 68.
222
  * At current implementation there will be an immediate return from
-
 
223
    the function, if the addition of ebx with current value of
-
 
224
    time counter will call 32-bit overflow.
-
 
225
 
222
 
226
======================================================================
223
======================================================================
227
============== Function 6 - read the file from ramdisk. ==============
224
============== Function 6 - read the file from ramdisk. ==============
228
======================================================================
225
======================================================================
229
Parameters:
226
Parameters:
230
  * eax = 6 - function number
227
  * eax = 6 - function number
231
  * ebx = pointer to the filename
228
  * ebx = pointer to the filename
232
  * ecx = number of start block, beginning from 1;
229
  * ecx = number of start block, beginning from 1;
233
    ecx=0 - read from the beginning of the file (same as ecx=1)
230
    ecx=0 - read from the beginning of the file (same as ecx=1)
234
  * edx = number of blocks to read;
231
  * edx = number of blocks to read;
235
    edx=0 - read one block (same as edx=1)
232
    edx=0 - read one block (same as edx=1)
236
  * esi = pointer to memory area for the data
233
  * esi = pointer to memory area for the data
237
Returned value:
234
Returned value:
238
  * eax = file size in bytes, if the file was successfully read
235
  * eax = file size in bytes, if the file was successfully read
239
  * eax = -1, if the file was not found
236
  * eax = -1, if the file was not found
240
Remarks:
237
Remarks:
241
  * This function is out-of-date; function 70 allows
238
  * This function is out-of-date; function 70 allows
242
    to fulfil the same operations with the extended possibilities.
239
    to fulfil the same operations with the extended possibilities.
243
  * Block = 512 bytes.
240
  * Block = 512 bytes.
244
  * For reading all file you can specify the certainly large value
241
  * For reading all file you can specify the certainly large value
245
    in edx, for example, edx = -1; but in this case be ready that
242
    in edx, for example, edx = -1; but in this case be ready that
246
    the program will "fall", if the file will appear too large and can
243
    the program will "fall", if the file will appear too large and can
247
    not be placed in the program memory.
244
    not be placed in the program memory.
248
  * The filename must be either in the format 8+3 characters
245
  * The filename must be either in the format 8+3 characters
249
    (first 8 characters - name itself, last 3 - extension,
246
    (first 8 characters - name itself, last 3 - extension,
250
    the short names and extensions are supplemented with spaces),
247
    the short names and extensions are supplemented with spaces),
251
    or in the format 8.3 characters "FILE.EXT"/"FILE.EX "
248
    or in the format 8.3 characters "FILE.EXT"/"FILE.EX "
252
    (name no more than 8 characters, dot, extension 3 characters
249
    (name no more than 8 characters, dot, extension 3 characters
253
    supplemented if necessary by spaces).
250
    supplemented if necessary by spaces).
254
    The filename must be written with capital letters. The terminating
251
    The filename must be written with capital letters. The terminating
255
    character with code 0 is not necessary (not ASCIIZ-string).
252
    character with code 0 is not necessary (not ASCIIZ-string).
256
  * This function does not support folders on the ramdisk.
253
  * This function does not support folders on the ramdisk.
257
 
254
 
258
======================================================================
255
======================================================================
259
=============== Function 7 - draw image in the window. ===============
256
=============== Function 7 - draw image in the window. ===============
260
======================================================================
257
======================================================================
261
Paramters:
258
Paramters:
262
  * eax = 7 - function number
259
  * eax = 7 - function number
263
  * ebx = pointer to the image in the format BBGGRRBBGGRR...
260
  * ebx = pointer to the image in the format BBGGRRBBGGRR...
264
  * ecx = [size on axis x]*65536 + [size on axis y]
261
  * ecx = [size on axis x]*65536 + [size on axis y]
265
  * edx = [coordinate on axis x]*65536 + [coordinate on axis y]
262
  * edx = [coordinate on axis x]*65536 + [coordinate on axis y]
266
Returned value:
263
Returned value:
267
  * function does not return value
264
  * function does not return value
268
Remarks:
265
Remarks:
269
  * Coordinates of the image are coordinates of the upper left corner
266
  * Coordinates of the image are coordinates of the upper left corner
270
    of the image relative to the window.
267
    of the image relative to the window.
271
  * Size of the image in bytes is 3*xsize*ysize.
268
  * Size of the image in bytes is 3*xsize*ysize.
272
 
269
 
273
======================================================================
270
======================================================================
274
=============== Function 8 - define/delete the button. ===============
271
=============== Function 8 - define/delete the button. ===============
275
======================================================================
272
======================================================================
276
Parameters for button definition:
273
Parameters for button definition:
277
  * eax = 8 - function number
274
  * eax = 8 - function number
278
  * ebx = [coordinate on axis x]*65536 + [size on axis x]
275
  * ebx = [coordinate on axis x]*65536 + [size on axis x]
279
  * ecx = [coordinate on axis y]*65536 + [size on axis y]
276
  * ecx = [coordinate on axis y]*65536 + [size on axis y]
280
  * edx = 0xXYnnnnnn, where:
277
  * edx = 0xXYnnnnnn, where:
281
    * nnnnnn = identifier of the button
278
    * nnnnnn = identifier of the button
282
    * high (31st) bit of edx is cleared
279
    * high (31st) bit of edx is cleared
283
    * if 30th bit of edx is set - do not draw the button
280
    * if 30th bit of edx is set - do not draw the button
284
    * if 29th bit of edx is set - do not draw a frame
281
    * if 29th bit of edx is set - do not draw a frame
285
      at pressing the button
282
      at pressing the button
286
  * esi = 0x00RRGGBB - color of the button
283
  * esi = 0x00RRGGBB - color of the button
287
Parameters for button deleting:
284
Parameters for button deleting:
288
  * eax = 8 - function number
285
  * eax = 8 - function number
289
  * edx = 0x80nnnnnn, where nnnnnn - identifier of the button
286
  * edx = 0x80nnnnnn, where nnnnnn - identifier of the button
290
Returned value:
287
Returned value:
291
  * function does not return value
288
  * function does not return value
292
Remarks:
289
Remarks:
293
  * Sizes of the button must be more than 0 and less than 0x8000.
290
  * Sizes of the button must be more than 0 and less than 0x8000.
294
  * For skinned windows definition of the window
291
  * For skinned windows definition of the window
295
    (call of 0th function) creates two standard buttons -
292
    (call of 0th function) creates two standard buttons -
296
    for close of the window with identifier 1 and
293
    for close of the window with identifier 1 and
297
    for minimize of the window with identifier 0xffff.
294
    for minimize of the window with identifier 0xffff.
298
  * The creation of two buttons with same identifiers is admitted.
295
  * The creation of two buttons with same identifiers is admitted.
299
  * The button with the identifier 0xffff at pressing is interpreted
296
  * The button with the identifier 0xffff at pressing is interpreted
300
    by the system as the button of minimization, the system handles
297
    by the system as the button of minimization, the system handles
301
    such pressing independently, not accessing to the application.
298
    such pressing independently, not accessing to the application.
302
    In rest it is usual button.
299
    In rest it is usual button.
303
  * Total number of buttons for all applications is limited to 4095.
300
  * Total number of buttons for all applications is limited to 4095.
304
 
301
 
305
======================================================================
302
======================================================================
306
============ Function 9 - information on execution thread. ===========
303
============ Function 9 - information on execution thread. ===========
307
======================================================================
304
======================================================================
308
Parameters:
305
Parameters:
309
  * eax = 9 - function number
306
  * eax = 9 - function number
310
  * ebx = pointer to 1-Kb buffer
307
  * ebx = pointer to 1-Kb buffer
311
  * ecx = number of the slot of the thread
308
  * ecx = number of the slot of the thread
312
    ecx = -1 - get information on the current thread
309
    ecx = -1 - get information on the current thread
313
Returned value:
310
Returned value:
314
  * eax = maximum number of the slot of a thread
311
  * eax = maximum number of the slot of a thread
315
  * buffer pointed to by ebx contains the following information:
312
  * buffer pointed to by ebx contains the following information:
316
    * +0: dword: usage of the processor (how many time units
313
    * +0: dword: usage of the processor (how many time units
317
      per second leaves on execution of this thread)
314
      per second leaves on execution of this thread)
318
    * +4: word: position of the window of thread in the window stack
315
    * +4: word: position of the window of thread in the window stack
319
    * +6: word: (has no relation to the specified thread)
316
    * +6: word: (has no relation to the specified thread)
320
      number of the thread slot, which window has in the window stack
317
      number of the thread slot, which window has in the window stack
321
      position ecx
318
      position ecx
322
    * +8: word: reserved
319
    * +8: word: reserved
323
    * +10 = +0xA: 11 bytes: name of the process
320
    * +10 = +0xA: 11 bytes: name of the process
324
      (name of corresponding executable file in the format 8+3)
321
      (name of corresponding executable file in the format 8+3)
325
    * +21 = +0x15: byte: reserved, this byte is not changed
322
    * +21 = +0x15: byte: reserved, this byte is not changed
326
    * +22 = +0x16: dword: address of the process in memory
323
    * +22 = +0x16: dword: address of the process in memory
327
    * +26 = +0x1A: dword: size of used memory - 1
324
    * +26 = +0x1A: dword: size of used memory - 1
328
    * +30 = +0x1E: dword: identifier (PID/TID)
325
    * +30 = +0x1E: dword: identifier (PID/TID)
329
    * +34 = +0x22: dword: coordinate of the thread window on axis x
326
    * +34 = +0x22: dword: coordinate of the thread window on axis x
330
    * +38 = +0x26: dword: coordinate of the thread window on axis y
327
    * +38 = +0x26: dword: coordinate of the thread window on axis y
331
    * +42 = +0x2A: dword: size of the thread window on axis x
328
    * +42 = +0x2A: dword: size of the thread window on axis x
332
    * +46 = +0x2E: dword: size of the thread window on axis y
329
    * +46 = +0x2E: dword: size of the thread window on axis y
333
    * +50 = +0x32: word: status of the thread slot:
330
    * +50 = +0x32: word: status of the thread slot:
334
      * 0 = thread is running
331
      * 0 = thread is running
335
      * 1 = thread is suspended
332
      * 1 = thread is suspended
336
      * 2 = thread is suspended while waiting for event
333
      * 2 = thread is suspended while waiting for event
337
      * 3 = thread is terminating as a result of call to function -1
334
      * 3 = thread is terminating as a result of call to function -1
338
        or under duress as a result of call to subfunction 2
335
        or under duress as a result of call to subfunction 2
339
        of function 18 or termination of the system
336
        of function 18 or termination of the system
340
      * 4 = thread is terminating as a result of exception
337
      * 4 = thread is terminating as a result of exception
341
      * 5 = thread waits for event
338
      * 5 = thread waits for event
342
      * 9 = requested slot is free, all other information on the slot
339
      * 9 = requested slot is free, all other information on the slot
343
        is not meaningful
340
        is not meaningful
344
    * +52 = +0x34: word: reserved, this word is not changed
341
    * +52 = +0x34: word: reserved, this word is not changed
345
    * +54 = +0x36: dword: coordinate of the client area on axis x
342
    * +54 = +0x36: dword: coordinate of the client area on axis x
346
    * +58 = +0x3A: dword: coordinate of the client area on axis y
343
    * +58 = +0x3A: dword: coordinate of the client area on axis y
347
    * +62 = +0x3E: dword: width of the client area
344
    * +62 = +0x3E: dword: width of the client area
348
    * +66 = +0x42: dword: height of the client area
345
    * +66 = +0x42: dword: height of the client area
349
    * +70 = +0x46: byte: state of the window - bitfield
346
    * +70 = +0x46: byte: state of the window - bitfield
350
      * bit 0 (mask 1): window is maximized
347
      * bit 0 (mask 1): window is maximized
351
      * bit 1 (mask 2): window is minimized to panel
348
      * bit 1 (mask 2): window is minimized to panel
352
      * bit 2 (mask 4): window is rolled up
349
      * bit 2 (mask 4): window is rolled up
353
Remarks:
350
Remarks:
354
  * Slots are numbered starting from 1.
351
  * Slots are numbered starting from 1.
355
  * Returned value is not a total number of threads, because there
352
  * Returned value is not a total number of threads, because there
356
    can be free slots.
353
    can be free slots.
357
  * When process is starting, system automatically creates
354
  * When process is starting, system automatically creates
358
    execution thread.
355
    execution thread.
359
  * Function gives information on the thread. Each process has
356
  * Function gives information on the thread. Each process has
360
    at least one thread. One process can create many threads,
357
    at least one thread. One process can create many threads,
361
    in this case each thread has its own slot and the fields
358
    in this case each thread has its own slot and the fields
362
    +10, +22, +26 in these slots coincide.
359
    +10, +22, +26 in these slots coincide.
363
    Applications have no common way to define whether two threads
360
    Applications have no common way to define whether two threads
364
    belong to one process.
361
    belong to one process.
365
  * The active window - window on top of the window stack -
362
  * The active window - window on top of the window stack -
366
    receives the messages on a keyboard input. For such window
363
    receives the messages on a keyboard input. For such window
367
    the position in the window stack coincides with returned value.
364
    the position in the window stack coincides with returned value.
368
  * Slot 1 corresponds to special system thread, for which:
365
  * Slot 1 corresponds to special system thread, for which:
369
    * the window is in the bottom of the window stack, the fields
366
    * the window is in the bottom of the window stack, the fields
370
      +4 and +6 contain value 1
367
      +4 and +6 contain value 1
371
    * name of the process - "OS/IDLE" (supplemented by spaces)
368
    * name of the process - "OS/IDLE" (supplemented by spaces)
372
    * address of the process in memory is 0, size of used memory is
369
    * address of the process in memory is 0, size of used memory is
373
      16 Mb (0x1000000)
370
      16 Mb (0x1000000)
374
    * PID=1
371
    * PID=1
375
    * coordinates and sizes of the window and the client area are by
372
    * coordinates and sizes of the window and the client area are by
376
      convention set to 0
373
      convention set to 0
377
    * status of the slot is always 0 (running)
374
    * status of the slot is always 0 (running)
378
    * the execution time adds of time leaving on operations itself
375
    * the execution time adds of time leaving on operations itself
379
      and idle time in waiting for interrupt (which can be got by call
376
      and idle time in waiting for interrupt (which can be got by call
380
      to subfunction 4 of function 18).
377
      to subfunction 4 of function 18).
381
  * Beginning from slot 2, the normal applications are placed.
378
  * Beginning from slot 2, the normal applications are placed.
382
  * The normal applications are placed in memory at the address
379
  * The normal applications are placed in memory at the address
383
    0x60400000 (kernel constant 'std_application_base_address').
380
    0x60400000 (kernel constant 'std_application_base_address').
384
    There is no intersection, as each process has its own page table.
381
    There is no intersection, as each process has its own page table.
385
  * At creation of the thread it is assigned the slot
382
  * At creation of the thread it is assigned the slot
386
    in the system table and identifier (Process/Thread IDentifier =
383
    in the system table and identifier (Process/Thread IDentifier =
387
    PID/TID), which do not vary with time for given thread.
384
    PID/TID), which do not vary with time for given thread.
388
    After completion of the thread its slot can be anew used
385
    After completion of the thread its slot can be anew used
389
    for another thread. The thread identifier can not be assigned
386
    for another thread. The thread identifier can not be assigned
390
    to other thread even after completion of this thread.
387
    to other thread even after completion of this thread.
391
    Identifiers, assigned to new threads, grow monotonously.
388
    Identifiers, assigned to new threads, grow monotonously.
392
  * If the thread has not yet defined the window by call to
389
  * If the thread has not yet defined the window by call to
393
    function 0, the position and the sizes
390
    function 0, the position and the sizes
394
    of its window are considered to be zero.
391
    of its window are considered to be zero.
395
  * Coordinates of the client area are relative to the window.
392
  * Coordinates of the client area are relative to the window.
396
  * At the moment only the part of the buffer by a size
393
  * At the moment only the part of the buffer by a size
397
    71 = 0x37 bytes is used. Nevertheless it is recommended to use
394
    71 = 0x37 bytes is used. Nevertheless it is recommended to use
398
    1-Kb buffer for the future compatibility, in the future
395
    1-Kb buffer for the future compatibility, in the future
399
    some fields can be added.
396
    some fields can be added.
400
 
397
 
401
======================================================================
398
======================================================================
402
==================== Function 10 - wait for event. ===================
399
==================== Function 10 - wait for event. ===================
403
======================================================================
400
======================================================================
404
If the message queue is empty, waits for appearance of the message
401
If the message queue is empty, waits for appearance of the message
405
in queue. In this state thread does not consume CPU time.
402
in queue. In this state thread does not consume CPU time.
406
Then reads out the message from queue.
403
Then reads out the message from queue.
407
 
404
 
408
Parameters:
405
Parameters:
409
  * eax = 10 - function number
406
  * eax = 10 - function number
410
Returned value:
407
Returned value:
411
  * eax = event (see the list of events)
408
  * eax = event (see the list of events)
412
Remarks:
409
Remarks:
413
  * Those events are taken into account only which enter into
410
  * Those events are taken into account only which enter into
414
    a mask set by function 40. By default it is
411
    a mask set by function 40. By default it is
415
    redraw, key and button events.
412
    redraw, key and button events.
416
  * To check, whether there is a message in queue, use function 11.
413
  * To check, whether there is a message in queue, use function 11.
417
    To wait for no more than given time, use function 23.
414
    To wait for no more than given time, use function 23.
418
 
415
 
419
======================================================================
416
======================================================================
420
=============== Function 11 - check for event, no wait. ==============
417
=============== Function 11 - check for event, no wait. ==============
421
======================================================================
418
======================================================================
422
If the message queue contains event, function reads out
419
If the message queue contains event, function reads out
423
and return it. If the queue is empty, function returns 0.
420
and return it. If the queue is empty, function returns 0.
424
Parameters:
421
Parameters:
425
  * eax = 11 - function number
422
  * eax = 11 - function number
426
Returned value:
423
Returned value:
427
  * eax = 0 - message queue is empty
424
  * eax = 0 - message queue is empty
428
  * else eax = event (see the list of events)
425
  * else eax = event (see the list of events)
429
Remarks:
426
Remarks:
430
  * Those events are taken into account only, which enter into
427
  * Those events are taken into account only, which enter into
431
    a mask set by function 40. By default it is
428
    a mask set by function 40. By default it is
432
    redraw, key and button events.
429
    redraw, key and button events.
433
  * To wait for event, use function 10.
430
  * To wait for event, use function 10.
434
    To wait for no more than given time, use function 23.
431
    To wait for no more than given time, use function 23.
435
 
432
 
436
======================================================================
433
======================================================================
437
=============== Function 12 - begin/end window redraw. ===============
434
=============== Function 12 - begin/end window redraw. ===============
438
======================================================================
435
======================================================================
439
 
436
 
440
---------------- Subfunction 1 - begin window redraw. ----------------
437
---------------- Subfunction 1 - begin window redraw. ----------------
441
Parameters:
438
Parameters:
442
  * eax = 12 - function number
439
  * eax = 12 - function number
443
  * ebx = 1 - subfunction number
440
  * ebx = 1 - subfunction number
444
Returned value:
441
Returned value:
445
  * function does not return value
442
  * function does not return value
446
 
443
 
447
----------------- Subfunction 2 - end window redraw. -----------------
444
----------------- Subfunction 2 - end window redraw. -----------------
448
Parameters:
445
Parameters:
449
  * eax = 12 - function number
446
  * eax = 12 - function number
450
  * ebx = 2 - subfunction number
447
  * ebx = 2 - subfunction number
451
Returned value:
448
Returned value:
452
  * function does not return value
449
  * function does not return value
453
Remarks:
450
Remarks:
454
  * Subfunction 1 deletes all buttons defined with
451
  * Subfunction 1 deletes all buttons defined with
455
    function 8, they must be defined again.
452
    function 8, they must be defined again.
456
 
453
 
457
======================================================================
454
======================================================================
458
============ Function 13 - draw a rectangle in the window. ===========
455
============ Function 13 - draw a rectangle in the window. ===========
459
======================================================================
456
======================================================================
460
Parameters:
457
Parameters:
461
  * eax = 13 - function number
458
  * eax = 13 - function number
462
  * ebx = [coordinate on axis x]*65536 + [size on axis x]
459
  * ebx = [coordinate on axis x]*65536 + [size on axis x]
463
  * ecx = [coordinate on axis y]*65536 + [size on axis y]
460
  * ecx = [coordinate on axis y]*65536 + [size on axis y]
464
  * edx = color 0xRRGGBB or 0x80RRGGBB for gradient fill
461
  * edx = color 0xRRGGBB or 0x80RRGGBB for gradient fill
465
Returned value:
462
Returned value:
466
  * function does not return value
463
  * function does not return value
467
Remarks:
464
Remarks:
468
  * Coordinates are understood as coordinates of the left upper corner
465
  * Coordinates are understood as coordinates of the left upper corner
469
    of a rectangle relative to the window.
466
    of a rectangle relative to the window.
470
 
467
 
471
======================================================================
468
======================================================================
472
=================== Function 14 - get screen size. ===================
469
=================== Function 14 - get screen size. ===================
473
======================================================================
470
======================================================================
474
Parameters:
471
Parameters:
475
  * eax = 14 - function number
472
  * eax = 14 - function number
476
Returned value:
473
Returned value:
477
  * eax = [xsize]*65536 + [ysize], where
474
  * eax = [xsize]*65536 + [ysize], where
478
  * xsize = x-coordinate of the right lower corner of the screen =
475
  * xsize = x-coordinate of the right lower corner of the screen =
479
            horizontal size - 1
476
            horizontal size - 1
480
  * ysize = y-coordinate of the right lower corner of the screen =
477
  * ysize = y-coordinate of the right lower corner of the screen =
481
            vertical size - 1
478
            vertical size - 1
482
Remarks:
479
Remarks:
483
  * See also subfunction 5 of function 48 - get sizes of
480
  * See also subfunction 5 of function 48 - get sizes of
484
    working area of the screen.
481
    working area of the screen.
485
 
482
 
486
======================================================================
483
======================================================================
487
== Function 15, subfunction 1 - set a size of the background image. ==
484
== Function 15, subfunction 1 - set a size of the background image. ==
488
======================================================================
485
======================================================================
489
Parameters:
486
Parameters:
490
  * eax = 15 - function number
487
  * eax = 15 - function number
491
  * ebx = 1 - subfunction number
488
  * ebx = 1 - subfunction number
492
  * ecx = width of the image
489
  * ecx = width of the image
493
  * edx = height of the image
490
  * edx = height of the image
494
Returned value:
491
Returned value:
495
  * function does not return value
492
  * function does not return value
496
Remarks:
493
Remarks:
497
  * Before calling subfunctions 2 and 5 you should call this function
494
  * Before calling subfunctions 2 and 5 you should call this function
498
    to set image size!
495
    to set image size!
499
  * For update of the screen (after completion of a series of commands
496
  * For update of the screen (after completion of a series of commands
500
    working with a background) call subfunction 3.
497
    working with a background) call subfunction 3.
501
  * There is a pair function for get size of the background image -
498
  * There is a pair function for get size of the background image -
502
    subfunction 1 of function 39.
499
    subfunction 1 of function 39.
503
 
500
 
504
======================================================================
501
======================================================================
505
=== Function 15, subfunction 2 - put pixel on the background image. ==
502
=== Function 15, subfunction 2 - put pixel on the background image. ==
506
======================================================================
503
======================================================================
507
Parameters:
504
Parameters:
508
  * eax = 15 - function number
505
  * eax = 15 - function number
509
  * ebx = 2 - subfunction number
506
  * ebx = 2 - subfunction number
510
  * ecx = offset
507
  * ecx = offset
511
  * edx = color of a pixel 0xRRGGBB
508
  * edx = color of a pixel 0xRRGGBB
512
Returned value:
509
Returned value:
513
  * function does not return value
510
  * function does not return value
514
Remarks:
511
Remarks:
515
  * Offset for a pixel with coordinates (x,y) is calculated as
512
  * Offset for a pixel with coordinates (x,y) is calculated as
516
    (x+y*xsize)*3.
513
    (x+y*xsize)*3.
517
  * If the given offset exceeds size set by subfunction 1,
514
  * If the given offset exceeds size set by subfunction 1,
518
    the call is ignored.
515
    the call is ignored.
519
  * For update of the screen (after completion of a series of commands
516
  * For update of the screen (after completion of a series of commands
520
    working with a background) call subfunction 3.
517
    working with a background) call subfunction 3.
521
  * There is a pair function for get pixel on the background image -
518
  * There is a pair function for get pixel on the background image -
522
    subfunction 2 of function 39.
519
    subfunction 2 of function 39.
523
 
520
 
524
======================================================================
521
======================================================================
525
=========== Function 15, subfunction 3 - redraw background. ==========
522
=========== Function 15, subfunction 3 - redraw background. ==========
526
======================================================================
523
======================================================================
527
Parameters:
524
Parameters:
528
  * eax = 15 - function number
525
  * eax = 15 - function number
529
  * ebx = 3 - subfunction number
526
  * ebx = 3 - subfunction number
530
Returned value:
527
Returned value:
531
  * function does not return value
528
  * function does not return value
532
 
529
 
533
======================================================================
530
======================================================================
534
== Function 15, subfunction 4 - set drawing mode for the background. =
531
== Function 15, subfunction 4 - set drawing mode for the background. =
535
======================================================================
532
======================================================================
536
Parameters:
533
Parameters:
537
  * eax = 15 - function number
534
  * eax = 15 - function number
538
  * ebx = 4 - subfunction number
535
  * ebx = 4 - subfunction number
539
  * ecx = drawing mode:
536
  * ecx = drawing mode:
540
    * 1 = tile
537
    * 1 = tile
541
    * 2 = stretch
538
    * 2 = stretch
542
Returned value:
539
Returned value:
543
  * function does not return value
540
  * function does not return value
544
Remarks:
541
Remarks:
545
  * For update of the screen (after completion of a series of commands
542
  * For update of the screen (after completion of a series of commands
546
    working with a background) call subfunction 3.
543
    working with a background) call subfunction 3.
547
  * There is a pair function for get drawing mode of the background -
544
  * There is a pair function for get drawing mode of the background -
548
    subfunction 4 of function 39.
545
    subfunction 4 of function 39.
549
 
546
 
550
======================================================================
547
======================================================================
551
===================== Function 15, subfunction 5 =====================
548
===================== Function 15, subfunction 5 =====================
552
============ Put block of pixels on the background image. ============
549
============ Put block of pixels on the background image. ============
553
======================================================================
550
======================================================================
554
Parameters:
551
Parameters:
555
  * eax = 15 - function number
552
  * eax = 15 - function number
556
  * ebx = 5 - subfunction number
553
  * ebx = 5 - subfunction number
557
  * ecx = pointer to the data in the format BBGGRRBBGGRR...
554
  * ecx = pointer to the data in the format BBGGRRBBGGRR...
558
  * edx = offset in data of the background image
555
  * edx = offset in data of the background image
559
  * esi = size of data in bytes = 3 * number of pixels
556
  * esi = size of data in bytes = 3 * number of pixels
560
Returned value:
557
Returned value:
561
  * function does not return value
558
  * function does not return value
562
Remarks:
559
Remarks:
563
  * Offset and size are not checked for correctness.
560
  * Offset and size are not checked for correctness.
564
  * Color of each pixel is stored as 3-bytes value BBGGRR.
561
  * Color of each pixel is stored as 3-bytes value BBGGRR.
565
  * Pixels of the background image are written sequentially
562
  * Pixels of the background image are written sequentially
566
    from left to right, from up to down.
563
    from left to right, from up to down.
567
  * Offset of pixel with coordinates (x,y) is (x+y*xsize)*3.
564
  * Offset of pixel with coordinates (x,y) is (x+y*xsize)*3.
568
  * For update of the screen (after completion of a series of commands
565
  * For update of the screen (after completion of a series of commands
569
    working with a background) call subfunction 3.
566
    working with a background) call subfunction 3.
570
 
567
 
571
======================================================================
568
======================================================================
572
===================== Function 15, subfunction 6 =====================
569
===================== Function 15, subfunction 6 =====================
573
======== Map background data to the address space of process. ========
570
======== Map background data to the address space of process. ========
574
======================================================================
571
======================================================================
575
Parameters:
572
Parameters:
576
  * eax = 15 - function number
573
  * eax = 15 - function number
577
  * ebx = 6 - subfunction number
574
  * ebx = 6 - subfunction number
578
Returned value:
575
Returned value:
579
  * eax = pointer to background data, 0 if error
576
  * eax = pointer to background data, 0 if error
580
Remarks:
577
Remarks:
581
  * Mapped data are available for read and write.
578
  * Mapped data are available for read and write.
582
  * Size of background data is 3*xsize*ysize. The system blocks
579
  * Size of background data is 3*xsize*ysize. The system blocks
583
    changes of background sizes while process works with mapped data.
580
    changes of background sizes while process works with mapped data.
584
  * Color of each pixel is stored as 3-bytes value BBGGRR.
581
  * Color of each pixel is stored as 3-bytes value BBGGRR.
585
  * Pixels of the background image are written sequentially
582
  * Pixels of the background image are written sequentially
586
    from left to right, from up to down.
583
    from left to right, from up to down.
587
 
584
 
588
======================================================================
585
======================================================================
589
===== Function 15, subfunction 7 - close mapped background data. =====
586
===== Function 15, subfunction 7 - close mapped background data. =====
590
======================================================================
587
======================================================================
591
Parameters:
588
Parameters:
592
  * eax = 15 - function number
589
  * eax = 15 - function number
593
  * ebx = 7 - subfunction number
590
  * ebx = 7 - subfunction number
594
  * ecx = pointer to mapped data
591
  * ecx = pointer to mapped data
595
Returned value:
592
Returned value:
596
  * eax = 1 - success, 0 - error
593
  * eax = 1 - success, 0 - error
597
 
594
 
598
======================================================================
595
======================================================================
599
=============== Function 16 - save ramdisk on a floppy. ==============
596
=============== Function 16 - save ramdisk on a floppy. ==============
600
======================================================================
597
======================================================================
601
Parameters:
598
Parameters:
602
  * eax = 16 - function number
599
  * eax = 16 - function number
603
  * ebx = 1 or ebx = 2 - on which floppy save
600
  * ebx = 1 or ebx = 2 - on which floppy save
604
Returned value:
601
Returned value:
605
  * eax = 0 - success
602
  * eax = 0 - success
606
  * eax = 1 - error
603
  * eax = 1 - error
607
 
604
 
608
======================================================================
605
======================================================================
609
======= Function 17 - get the identifier of the pressed button. ======
606
======= Function 17 - get the identifier of the pressed button. ======
610
======================================================================
607
======================================================================
611
Takes away the code of the pressed button from the buffer.
608
Takes away the code of the pressed button from the buffer.
612
Parameters:
609
Parameters:
613
  * eax = 17 - function number
610
  * eax = 17 - function number
614
Returned value:
611
Returned value:
615
  * if the buffer is empty, function returns eax=1
612
  * if the buffer is empty, function returns eax=1
616
  * if the buffer is not empty, function returns:
613
  * if the buffer is not empty:
617
    high 24 bits of eax contain button identifier (in particular, ah
614
    * high 24 bits of eax contain button identifier (in particular,
618
    contains low byte of the identifier; if all buttons have
615
      ah contains low byte of the identifier; if all buttons have
619
    the identifier less than 256, ah is enough to distinguish),
616
      the identifier less than 256, ah is enough to distinguish)
620
    and al contain 0 - if used left mouse button or bit of the used another mouse button
617
    * al = 0 - the button was pressed with left mouse button
-
 
618
    * al = bit corresponding to used mouse button otherwise
621
Remarks:
619
Remarks:
622
  * "Buffer" keeps only one button, at pressing the new button the
620
  * "Buffer" keeps only one button, at pressing the new button the
623
    information about old is lost.
621
    information about old is lost.
624
  * The call of this function by an application with inactive window
622
  * The call of this function by an application with inactive window
625
    will return answer "buffer is empty".
623
    will return answer "buffer is empty".
-
 
624
  * Returned value for al corresponds to the state of mouse buttons
-
 
625
    as in subfunction 2 of function 37 at the beginning
-
 
626
    of button press, excluding lower bit, which is cleared.
626
 
627
 
627
======================================================================
628
======================================================================
628
= Function 18, subfunction 2 - terminate process/thread by the slot. =
629
= Function 18, subfunction 2 - terminate process/thread by the slot. =
629
======================================================================
630
======================================================================
630
Parameters:
631
Parameters:
631
  * eax = 18 - function number
632
  * eax = 18 - function number
632
  * ebx = 2 - subfunction number
633
  * ebx = 2 - subfunction number
633
  * ecx = number of the slot of process/thread
634
  * ecx = number of the slot of process/thread
634
Returned value:
635
Returned value:
635
  * function does not return value
636
  * function does not return value
636
Remarks:
637
Remarks:
637
  * It is impossible to terminate system thread OS/IDLE (with
638
  * It is impossible to terminate system thread OS/IDLE (with
638
    number of the slot 1),
639
    number of the slot 1),
639
    it is possible to terminate any normal process/thread.
640
    it is possible to terminate any normal process/thread.
640
  * See also subfunction 18 - terminate
641
  * See also subfunction 18 - terminate
641
    process/thread by the identifier.
642
    process/thread by the identifier.
642
 
643
 
643
======================================================================
644
======================================================================
644
===================== Function 18, subfunction 3 =====================
645
===================== Function 18, subfunction 3 =====================
645
============= Make active the window of the given thread. ============
646
============= Make active the window of the given thread. ============
646
======================================================================
647
======================================================================
647
Parameters:
648
Parameters:
648
  * eax = 18 - function number
649
  * eax = 18 - function number
649
  * ebx = 3 - subfunction number
650
  * ebx = 3 - subfunction number
650
  * ecx = number of the thread slot
651
  * ecx = number of the thread slot
651
Returned value:
652
Returned value:
652
  * function does not return value
653
  * function does not return value
653
Remarks:
654
Remarks:
654
  * If correct, but nonexistent slot is given,
655
  * If correct, but nonexistent slot is given,
655
    some window is made active.
656
    some window is made active.
656
  * To find out, which window is active, use subfunction 7.
657
  * To find out, which window is active, use subfunction 7.
657
 
658
 
658
======================================================================
659
======================================================================
659
===================== Function 18, subfunction 4 =====================
660
===================== Function 18, subfunction 4 =====================
660
=========== Get counter of idle time units per one second. ===========
661
=========== Get counter of idle time units per one second. ===========
661
======================================================================
662
======================================================================
662
Idle time units are units, in which the processor stands idle
663
Idle time units are units, in which the processor stands idle
663
in waiting for interrupt (in the command 'hlt').
664
in waiting for interrupt (in the command 'hlt').
664
 
665
 
665
Parameters:
666
Parameters:
666
  * eax = 18 - function number
667
  * eax = 18 - function number
667
  * ebx = 4 - subfunction number
668
  * ebx = 4 - subfunction number
668
Returned value:
669
Returned value:
669
  * eax = value of the counter of idle time units per one second
670
  * eax = value of the counter of idle time units per one second
670
 
671
 
671
======================================================================
672
======================================================================
672
========== Function 18, subfunction 5 - get CPU clock rate. ==========
673
========== Function 18, subfunction 5 - get CPU clock rate. ==========
673
======================================================================
674
======================================================================
674
Parameters:
675
Parameters:
675
  * eax = 18 - function number
676
  * eax = 18 - function number
676
  * ebx = 5 - subfunction number
677
  * ebx = 5 - subfunction number
677
Returned value:
678
Returned value:
678
  * eax = clock rate (modulo 2^32 clock ticks = 4GHz)
679
  * eax = clock rate (modulo 2^32 clock ticks = 4GHz)
679
 
680
 
680
======================================================================
681
======================================================================
681
 Function 18, subfunction 6 - save ramdisk to the file on hard drive. 
682
 Function 18, subfunction 6 - save ramdisk to the file on hard drive.
682
======================================================================
683
======================================================================
683
Parameters:
684
Parameters:
684
  * eax = 18 - function number
685
  * eax = 18 - function number
685
  * ebx = 6 - subfunction number
686
  * ebx = 6 - subfunction number
686
  * ecx = pointer to the full path to file
687
  * ecx = pointer to the full path to file
687
    (for example, "/hd0/1/kolibri/kolibri.img")
688
    (for example, "/hd0/1/kolibri/kolibri.img")
688
Returned value:
689
Returned value:
689
  * eax = 0 - success
690
  * eax = 0 - success
690
  * else eax = error code of the file system
691
  * else eax = error code of the file system
691
Remarks:
692
Remarks:
692
  * All folders in the given path must exist, otherwise function
693
  * All folders in the given path must exist, otherwise function
693
    returns value 5, "file not found".
694
    returns value 5, "file not found".
694
 
695
 
695
======================================================================
696
======================================================================
696
=========== Function 18, subfunction 7 - get active window. ==========
697
=========== Function 18, subfunction 7 - get active window. ==========
697
======================================================================
698
======================================================================
698
Parameters:
699
Parameters:
699
  * eax = 18 - function number
700
  * eax = 18 - function number
700
  * ebx = 7 - subfunction number
701
  * ebx = 7 - subfunction number
701
Returned value:
702
Returned value:
702
  * eax = number of the active window
703
  * eax = number of the active window
703
    (number of the slot of the thread with active window)
704
    (number of the slot of the thread with active window)
704
Remarks:
705
Remarks:
705
  * Active window is at the top of the window stack and receives
706
  * Active window is at the top of the window stack and receives
706
    messages on all keyboard input.
707
    messages on all keyboard input.
707
  * To make a window active, use subfunction 3.
708
  * To make a window active, use subfunction 3.
708
 
709
 
709
======================================================================
710
======================================================================
710
== Function 18, subfunction 8 - disable/enable the internal speaker. =
711
== Function 18, subfunction 8 - disable/enable the internal speaker. =
711
======================================================================
712
======================================================================
712
If speaker sound is disabled, all calls to subfunction 55 of
713
If speaker sound is disabled, all calls to subfunction 55 of
713
function 55 are ignored. If speaker sound is enabled,
714
function 55 are ignored. If speaker sound is enabled,
714
they are routed on builtin speaker.
715
they are routed on builtin speaker.
715
 
716
 
716
------------------- Subsubfunction 1 - get status. -------------------
717
------------------- Subsubfunction 1 - get status. -------------------
717
Parameters:
718
Parameters:
718
  * eax = 18 - function number
719
  * eax = 18 - function number
719
  * ebx = 8 - subfunction number
720
  * ebx = 8 - subfunction number
720
  * ecx = 1 - number of the subsubfunction
721
  * ecx = 1 - number of the subsubfunction
721
Returned value:
722
Returned value:
722
  * eax = 0 - speaker sound is enabled; 1 - disabled
723
  * eax = 0 - speaker sound is enabled; 1 - disabled
723
 
724
 
724
----------------- Subsubfunction 2 - toggle status. ------------------
725
----------------- Subsubfunction 2 - toggle status. ------------------
725
Toggles states of disable/enable.
726
Toggles states of disable/enable.
726
Parameters:
727
Parameters:
727
  * eax = 18 - function number
728
  * eax = 18 - function number
728
  * ebx = 8 - subfunction number
729
  * ebx = 8 - subfunction number
729
  * ecx = 2 - number of the subsubfunction
730
  * ecx = 2 - number of the subsubfunction
730
Returned value:
731
Returned value:
731
  * function does not return value
732
  * function does not return value
732
 
733
 
733
======================================================================
734
======================================================================
734
============ Function 18, subfunction 9 - system shutdown. ===========
735
== Function 18, subfunction 9 - system shutdown with the parameter. ==
735
======================================================================
736
======================================================================
736
Parameters:
737
Parameters:
737
  * eax = 18 - function number
738
  * eax = 18 - function number
738
  * ebx = 9 - subfunction number
739
  * ebx = 9 - subfunction number
739
  * ecx = parameter:
740
  * ecx = parameter:
740
    * 2 = turn off computer
741
    * 2 = turn off computer
741
    * 3 = reboot computer
742
    * 3 = reboot computer
742
    * 4 = restart the kernel from the file 'kernel.mnt' on ramdisk
743
    * 4 = restart the kernel from the file 'kernel.mnt' on ramdisk
743
Returned value:
744
Returned value:
744
  * at incorrect ecx the registers do not change (i.e. eax=18)
745
  * at incorrect ecx the registers do not change (i.e. eax=18)
745
  * by correct call function always returns eax=0
746
  * by correct call function always returns eax=0
746
    as the tag of success
747
    as the tag of success
747
Remarks:
748
Remarks:
748
  * Do not rely on returned value by incorrect call, it can be
749
  * Do not rely on returned value by incorrect call, it can be
749
    changed in future versions of the kernel.
750
    changed in future versions of the kernel.
750
  * It is possible to use subfunction 1, that on the last step
-
 
751
    the user makes choice himself.
-
 
-
 
751
 
752
======================================================================
752
======================================================================
753
===== Function 18, subfunction 10 - minimize application window. =====
753
===== Function 18, subfunction 10 - minimize application window. =====
754
======================================================================
754
======================================================================
755
Minimizes the own window.
755
Minimizes the own window.
756
Parameters:
756
Parameters:
757
  * eax = 18 - function number
757
  * eax = 18 - function number
758
  * ebx = 10 - subfunction number
758
  * ebx = 10 - subfunction number
759
Returned value:
759
Returned value:
760
  * function does not return value
760
  * function does not return value
761
Remarks:
761
Remarks:
762
  * The minimized window from the point of view of function 9
762
  * The minimized window from the point of view of function 9
763
    keeps position and sizes.
763
    keeps position and sizes.
764
  * Restoring of an application window occurs at its activation by 
764
  * Restoring of an application window occurs at its activation by
765
    subfunction 3.
765
    subfunction 3.
766
  * Usually there is no necessity to minimize/restire a window
766
  * Usually there is no necessity to minimize/restire a window
767
    obviously: minimization of a window is carried out by the system
767
    obviously: minimization of a window is carried out by the system
768
    at pressing the minimization button (for skinned windows
768
    at pressing the minimization button (for skinned windows
769
    it is defined automatically by function 0,
769
    it is defined automatically by function 0,
770
    for other windows it can be defined manually by function 8),
770
    for other windows it can be defined manually by function 8),
771
    restore of a window is done by the application '@panel'.
771
    restore of a window is done by the application '@panel'.
772
 
772
 
773
======================================================================
773
======================================================================
774
 Function 18, subfunction 11 - get information on the disk subsystem. 
774
 Function 18, subfunction 11 - get information on the disk subsystem.
775
======================================================================
775
======================================================================
776
Parameters:
776
Parameters:
777
  * eax = 18 - function number
777
  * eax = 18 - function number
778
  * ebx = 11 - subfunction number
778
  * ebx = 11 - subfunction number
779
  * ecx = type of the table:
779
  * ecx = type of the table:
780
    * 1 = short version, 10 bytes
780
    * 1 = short version, 10 bytes
781
    * 2 = full version, 65536 bytes
781
    * 2 = full version, 65536 bytes
782
  * edx = pointer to the buffer (in the application) for the table
782
  * edx = pointer to the buffer (in the application) for the table
783
Returned value:
783
Returned value:
784
  * function does not return value
784
  * function does not return value
785
Format of the table: short version:
785
Format of the table: short version:
786
  * +0: byte: information about FDD's (drives for floppies),
786
  * +0: byte: information about FDD's (drives for floppies),
787
    AAAABBBB, where AAAA gives type of the first drive, BBBB -
787
    AAAABBBB, where AAAA gives type of the first drive, BBBB -
788
    of the second regarding to the following list:
788
    of the second regarding to the following list:
789
    * 0 = there is no drive
789
    * 0 = there is no drive
790
    * 1 = 360Kb, 5.25''
790
    * 1 = 360Kb, 5.25''
791
    * 2 = 1.2Mb, 5.25''
791
    * 2 = 1.2Mb, 5.25''
792
    * 3 = 720Kb, 3.5''
792
    * 3 = 720Kb, 3.5''
793
    * 4 = 1.44Mb, 3.5''
793
    * 4 = 1.44Mb, 3.5''
794
    * 5 = 2.88Mb, 3.5'' (such drives are not used anymore)
794
    * 5 = 2.88Mb, 3.5'' (such drives are not used anymore)
795
    For example, for the standard configuration from one 1.44-drive
795
    For example, for the standard configuration from one 1.44-drive
796
    here will be 40h, and for the case 1.2Mb on A: and 1.44Mb on B:
796
    here will be 40h, and for the case 1.2Mb on A: and 1.44Mb on B:
797
    the value is 24h.
797
    the value is 24h.
798
  * +1: byte: information about hard disks and CD-drives, AABBCCDD,
798
  * +1: byte: information about hard disks and CD-drives, AABBCCDD,
799
    where AA corresponds to the controller IDE0, ..., DD - IDE3:
799
    where AA corresponds to the controller IDE0, ..., DD - IDE3:
800
    * 0 = device is absent
800
    * 0 = device is absent
801
    * 1 = hard drive
801
    * 1 = hard drive
802
    * 2 = CD-drive
802
    * 2 = CD-drive
803
    For example, in the case HD on IDE0 and CD on IDE2
803
    For example, in the case HD on IDE0 and CD on IDE2
804
    this field contains 48h.
804
    this field contains 48h.
805
  * +2: 4 db: number of the retrieved partitions on hard disks
805
  * +2: 4 db: number of the retrieved partitions on hard disks
806
    at accordingly IDE0,...,IDE3.
806
    at accordingly IDE0,...,IDE3.
807
    If the hard disk on IDEx is absent, appropriate byte is zero,
807
    If the hard disk on IDEx is absent, appropriate byte is zero,
808
    otherwise it shows number of the recognized partitions, which
808
    otherwise it shows number of the recognized partitions, which
809
    can be not presented (if the drive is not formatted or if
809
    can be not presented (if the drive is not formatted or if
810
    the file system is not supported). Current version of the kernel
810
    the file system is not supported). Current version of the kernel
811
    supports only FAT16, FAT32 and NTFS for hard disks.
811
    supports only FAT16, FAT32 and NTFS for hard disks.
812
  * +6: 4 db: reserved
812
  * +6: 4 db: reserved
813
Format of the table: full version:
813
Format of the table: full version:
814
  * +0: 10 db: same as for the short version
814
  * +0: 10 db: same as for the short version
815
  * +10: 100 db: data for the first partition
815
  * +10: 100 db: data for the first partition
816
  * +110: 100 db: data for the second partition
816
  * +110: 100 db: data for the second partition
817
  * ...
817
  * ...
818
  * +10+100*(n-1): 100 db: data for the last partition
818
  * +10+100*(n-1): 100 db: data for the last partition
819
The partitions are located as follows: at first sequentially all
819
The partitions are located as follows: at first sequentially all
820
recoginzed partitions on HD on IDE0 (if present),
820
recoginzed partitions on HD on IDE0 (if present),
821
then on HD on IDE1 (if present) and so on up to IDE3.
821
then on HD on IDE1 (if present) and so on up to IDE3.
822
Format of the information about partition
822
Format of the information about partition
823
(at moment only FAT is supported):
823
(at moment only FAT is supported):
824
  * +0: dword: first physical sector of the partition
824
  * +0: dword: first physical sector of the partition
825
  * +4: dword: last physical sector of the partition
825
  * +4: dword: last physical sector of the partition
826
    (belongs to the partition)
826
    (belongs to the partition)
827
  * +8: byte: file system type:
827
  * +8: byte: file system type:
828
    16=FAT16, 32=FAT32, 1=NTFS
828
    16=FAT16, 32=FAT32, 1=NTFS
829
  * other data are dependent on file system, are modified with
829
  * other data are dependent on file system, are modified with
830
    kernel modifications and therefore are not described
830
    kernel modifications and therefore are not described
831
Remarks:
831
Remarks:
832
  * The short table can be used for obtaining the information about
832
  * The short table can be used for obtaining the information about
833
    available devices.
833
    available devices.
834
 
834
 
835
======================================================================
835
======================================================================
836
========== Function 18, subfunction 13 - get kernel version. =========
836
========== Function 18, subfunction 13 - get kernel version. =========
837
======================================================================
837
======================================================================
838
Parameters:
838
Parameters:
839
  * eax = 18 - function number
839
  * eax = 18 - function number
840
  * ebx = 13 - subfunction number
840
  * ebx = 13 - subfunction number
841
  * ecx = pointer to the buffer (not less than 16 bytes), where
841
  * ecx = pointer to the buffer (not less than 16 bytes), where
842
    the information will be placed
842
    the information will be placed
843
Returned value:
843
Returned value:
844
  * function does not return value
844
  * function does not return value
845
Structure of the buffer:
845
Structure of the buffer:
846
db a,b,c,d for version a.b.c.d
846
db a,b,c,d for version a.b.c.d
847
db UID_xxx: one of UID_NONE=0, UID_MENUET=1, UID_KOLIBRI=2
847
db UID_xxx: one of UID_NONE=0, UID_MENUET=1, UID_KOLIBRI=2
848
dd REV - kernel SVN revision number
848
dd REV - kernel SVN revision number
849
For Kolibri 0.7.1.0 kernel:
849
For Kolibri 0.7.1.0 kernel:
850
db 0,7,0,0
850
db 0,7,0,0
851
db 2
851
db 2
852
dd 638
852
dd 638
853
 
853
 
854
======================================================================
854
======================================================================
855
======= Function 18, subfunction 14 - wait for screen retrace. =======
855
======= Function 18, subfunction 14 - wait for screen retrace. =======
856
======================================================================
856
======================================================================
857
Waits for the beginning of retrace of the scanning ray of the screen
857
Waits for the beginning of retrace of the scanning ray of the screen
858
monitor.
858
monitor.
859
Parameters:
859
Parameters:
860
  * eax = 18 - function number
860
  * eax = 18 - function number
861
  * ebx = 14 - subfunction number
861
  * ebx = 14 - subfunction number
862
Returned value:
862
Returned value:
863
  * eax = 0 as the tag of success
863
  * eax = 0 as the tag of success
864
Remarks:
864
Remarks:
865
  * Function is intended only for active high-efficiency graphics
865
  * Function is intended only for active high-efficiency graphics
866
    applications; is used for smooth output of a graphics.
866
    applications; is used for smooth output of a graphics.
867
 
867
 
868
======================================================================
868
======================================================================
869
== Function 18, subfunction 15 - center mouse cursor on the screen. ==
869
== Function 18, subfunction 15 - center mouse cursor on the screen. ==
870
======================================================================
870
======================================================================
871
Parameters:
871
Parameters:
872
  * eax = 18 - function number
872
  * eax = 18 - function number
873
  * ebx = 15 - subfunction number
873
  * ebx = 15 - subfunction number
874
Returned value:
874
Returned value:
875
  * eax = 0 as the tag of success
875
  * eax = 0 as the tag of success
876
 
876
 
877
======================================================================
877
======================================================================
878
========= Function 18, subfunction 16 - get size of free RAM. ========
878
========= Function 18, subfunction 16 - get size of free RAM. ========
879
======================================================================
879
======================================================================
880
Parameters:
880
Parameters:
881
  * eax = 18 - function number
881
  * eax = 18 - function number
882
  * ebx = 16 - subfunction number
882
  * ebx = 16 - subfunction number
883
Returned value:
883
Returned value:
884
  * eax = size of free memory in kilobytes
884
  * eax = size of free memory in kilobytes
885
 
885
 
886
======================================================================
886
======================================================================
887
======== Function 18, subfunction 17 - get full amount of RAM. =======
887
======== Function 18, subfunction 17 - get full amount of RAM. =======
888
======================================================================
888
======================================================================
889
Parameters:
889
Parameters:
890
  * eax = 18 - function number
890
  * eax = 18 - function number
891
  * ebx = 17 - subfunction number
891
  * ebx = 17 - subfunction number
892
Returned value:
892
Returned value:
893
  * eax = total size of existing memory in kilobytes
893
  * eax = total size of existing memory in kilobytes
894
 
894
 
895
======================================================================
895
======================================================================
896
===================== Function 18, subfunction 18 ====================
896
===================== Function 18, subfunction 18 ====================
897
============= Terminate process/thread by the identifier. ============
897
============= Terminate process/thread by the identifier. ============
898
======================================================================
898
======================================================================
899
Parameters:
899
Parameters:
900
  * eax = 18 - function number
900
  * eax = 18 - function number
901
  * ebx = 18 - subfunction number
901
  * ebx = 18 - subfunction number
902
  * ecx = identifer of process/thread (PID/TID)
902
  * ecx = identifer of process/thread (PID/TID)
903
Returned value:
903
Returned value:
904
  * eax = 0 - success
904
  * eax = 0 - success
905
  * eax = -1 - error (process is not found or is system)
905
  * eax = -1 - error (process is not found or is system)
906
Remarks:
906
Remarks:
907
  * It is impossible to terminate system thread OS/IDLE (identifier
907
  * It is impossible to terminate system thread OS/IDLE (identifier
908
    1), it is possible to terminate any normal process/thread.
908
    1), it is possible to terminate any normal process/thread.
909
  * See also subfunction 2 - terminate
909
  * See also subfunction 2 - terminate
910
    process/thread by given slot.
910
    process/thread by given slot.
911
 
911
 
912
======================================================================
912
======================================================================
913
======== Function 18, subfunction 19 - get/set mouse features. =======
913
======== Function 18, subfunction 19 - get/set mouse features. =======
914
======================================================================
914
======================================================================
915
 
915
 
916
---------------- Subsubfunction 0 - get mouse speed. -----------------
916
---------------- Subsubfunction 0 - get mouse speed. -----------------
917
Parameters:
917
Parameters:
918
  * eax = 18 - function number
918
  * eax = 18 - function number
919
  * ebx = 19 - subfunction number
919
  * ebx = 19 - subfunction number
920
  * ecx = 0 - subsubfunction number
920
  * ecx = 0 - subsubfunction number
921
Returned value:
921
Returned value:
922
  * eax = current mouse speed
922
  * eax = current mouse speed
923
 
923
 
924
---------------- Subsubfunction 1 - set mouse speed. -----------------
924
---------------- Subsubfunction 1 - set mouse speed. -----------------
925
Parameters:
925
Parameters:
926
  * eax = 18 - function number
926
  * eax = 18 - function number
927
  * ebx = 19 - subfunction number
927
  * ebx = 19 - subfunction number
928
  * ecx = 1 - subsubfunction number
928
  * ecx = 1 - subsubfunction number
929
  * edx = new value for speed
929
  * edx = new value for speed
930
Returned value:
930
Returned value:
931
  * function does not return value
931
  * function does not return value
932
 
932
 
933
---------------- Subsubfunction 2 - get mouse delay. -----------------
933
---------------- Subsubfunction 2 - get mouse delay. -----------------
934
Parameters:
934
Parameters:
935
  * eax = 18 - function number
935
  * eax = 18 - function number
936
  * ebx = 19 - subfunction number
936
  * ebx = 19 - subfunction number
937
  * ecx = 2 - subsubfunction number
937
  * ecx = 2 - subsubfunction number
938
Returned value:
938
Returned value:
939
  * eax = current mouse delay
939
  * eax = current mouse delay
940
 
940
 
941
---------------- Subsubfunction 3 - set mouse delay. -----------------
941
---------------- Subsubfunction 3 - set mouse delay. -----------------
942
Parameters:
942
Parameters:
943
  * eax = 18 - function number
943
  * eax = 18 - function number
944
  * ebx = 19 - subfunction number
944
  * ebx = 19 - subfunction number
945
  * ecx = 3 - subsubfunction number
945
  * ecx = 3 - subsubfunction number
946
  * edx = new value for mouse delay
946
  * edx = new value for mouse delay
947
Returned value:
947
Returned value:
948
  * function does not return value
948
  * function does not return value
949
 
949
 
950
----------- Subsubfunction 4 - set mouse pointer position. -----------
950
----------- Subsubfunction 4 - set mouse pointer position. -----------
951
Parameters:
951
Parameters:
952
  * eax = 18 - function number
952
  * eax = 18 - function number
953
  * ebx = 19 - subfunction number
953
  * ebx = 19 - subfunction number
954
  * ecx = 4 - subsubfunction number
954
  * ecx = 4 - subsubfunction number
955
  * edx = [coordinate on axis x]*65536 + [coordinate on axis y]
955
  * edx = [coordinate on axis x]*65536 + [coordinate on axis y]
956
Returned value:
956
Returned value:
957
  * function does not return value
957
  * function does not return value
958
 
958
 
959
-------- Subsubfunction 5 - simulate state of mouse buttons. ---------
959
-------- Subsubfunction 5 - simulate state of mouse buttons. ---------
960
Parameters:
960
Parameters:
961
  * eax = 18 - function number
961
  * eax = 18 - function number
962
  * ebx = 19 - subfunction number
962
  * ebx = 19 - subfunction number
963
  * ecx = 5 - subsubfunction number
963
  * ecx = 5 - subsubfunction number
964
  * edx = information about emulated state of mouse buttons:
964
  * edx = information about emulated state of mouse buttons:
965
    (same as return value in subfunction 2 of function 37)
965
    (same as return value in subfunction 2 of function 37)
966
    * bit 0 is set = left button is pressed
966
    * bit 0 is set = left button is pressed
967
    * bit 1 is set = right button is pressed
967
    * bit 1 is set = right button is pressed
968
    * bit 2 is set = middle button is pressed
968
    * bit 2 is set = middle button is pressed
969
    * bit 3 is set = 4th button is pressed
969
    * bit 3 is set = 4th button is pressed
970
    * bit 4 is set = 5th button is pressed
970
    * bit 4 is set = 5th button is pressed
971
Returned value:
971
Returned value:
972
  * function does not return value
972
  * function does not return value
973
Remarks:
973
Remarks:
974
  * It is recommended to set speed of the mouse (in subsubfunction 1)
974
  * It is recommended to set speed of the mouse (in subsubfunction 1)
975
    from 1 up to 9. The installed value is not inspected by the kernel
975
    from 1 up to 9. The installed value is not inspected by the kernel
976
    code, so set it carefully, at incorrect value the cursor
976
    code, so set it carefully, at incorrect value the cursor
977
    can "freeze". Speed of the mouse can be regulated through the
977
    can "freeze". Speed of the mouse can be regulated through the
978
    application SETUP.
978
    application SETUP.
979
  * Recommended delay of the mouse (in subsubfunction 3) = 10. Lower
979
  * Recommended delay of the mouse (in subsubfunction 3) = 10. Lower
980
    value is not handled by COM mice. At the very large values the
980
    value is not handled by COM mice. At the very large values the
981
    movement of the mouse on 1 pixel is impossible and the cursor will
981
    movement of the mouse on 1 pixel is impossible and the cursor will
982
    jump on the value of installed speed (subsubfunction 1). The
982
    jump on the value of installed speed (subsubfunction 1). The
983
    installed value is not inspected by the kernel code.
983
    installed value is not inspected by the kernel code.
984
    Mouse delay can be regulated through the application SETUP.
984
    Mouse delay can be regulated through the application SETUP.
985
  * The subsubfunction 4 does not check the passed value. Before
985
  * The subsubfunction 4 does not check the passed value. Before
986
    its call find out current screen resolution (with function 14)
986
    its call find out current screen resolution (with function 14)
987
    and check that the value of position is inside the limits of the
987
    and check that the value of position is inside the limits of the
988
    screen.
988
    screen.
989
 
989
 
990
======================================================================
990
======================================================================
991
======== Function 18, subfunction 20 - get information on RAM. =======
991
======== Function 18, subfunction 20 - get information on RAM. =======
992
======================================================================
992
======================================================================
993
Parameters:
993
Parameters:
994
  * eax = 18 - function number
994
  * eax = 18 - function number
995
  * ebx = 20 - subfunction number
995
  * ebx = 20 - subfunction number
996
  * ecx = pointer to the buffer for information (36 bytes)
996
  * ecx = pointer to the buffer for information (36 bytes)
997
Returned value:
997
Returned value:
998
  * eax = total size of existing RAM in pages
998
  * eax = total size of existing RAM in pages
999
    or -1 if error has occured
999
    or -1 if error has occured
1000
  * buffer pointed to by ecx contains the following information:
1000
  * buffer pointed to by ecx contains the following information:
1001
    * +0:  dword: total size of existing RAM in pages
1001
    * +0:  dword: total size of existing RAM in pages
1002
    * +4:  dword: size of free RAM in pages
1002
    * +4:  dword: size of free RAM in pages
1003
    * +8:  dword: number of page faults (exceptions #PF)
1003
    * +8:  dword: number of page faults (exceptions #PF)
1004
                 in applications
1004
                 in applications
1005
    * +12: dword: size of kernel heap in bytes
1005
    * +12: dword: size of kernel heap in bytes
1006
    * +16: dword: free in kernel heap in bytes
1006
    * +16: dword: free in kernel heap in bytes
1007
    * +20: dword: total number of memory blocks in kernel heap
1007
    * +20: dword: total number of memory blocks in kernel heap
1008
    * +24: dword: number of free memory blocks in kernel heap
1008
    * +24: dword: number of free memory blocks in kernel heap
1009
    * +28: dword: size of maximum free block in kernel heap
1009
    * +28: dword: size of maximum free block in kernel heap
1010
                 (reserved)
1010
                 (reserved)
1011
    * +32: dword: size of maximum allocated block in kernel heap
1011
    * +32: dword: size of maximum allocated block in kernel heap
1012
                 (reserved)
1012
                 (reserved)
1013
 
1013
 
1014
======================================================================
1014
======================================================================
1015
===================== Function 18, subfunction 21 ====================
1015
===================== Function 18, subfunction 21 ====================
1016
======== Get slot number of process/thread by the identifier. ========
1016
======== Get slot number of process/thread by the identifier. ========
1017
======================================================================
1017
======================================================================
1018
Parameters:
1018
Parameters:
1019
  * eax = 18 - function number
1019
  * eax = 18 - function number
1020
  * ebx = 21 - subfunction number
1020
  * ebx = 21 - subfunction number
1021
  * ecx = identifer of process/thread (PID/TID)
1021
  * ecx = identifer of process/thread (PID/TID)
1022
Returned value:
1022
Returned value:
1023
  * eax = 0 - error (invalid identifier)
1023
  * eax = 0 - error (invalid identifier)
1024
  * otherwise eax = slot number
1024
  * otherwise eax = slot number
1025
 
1025
 
1026
======================================================================
1026
======================================================================
1027
===================== Function 18, subfunction 22 ====================
1027
===================== Function 18, subfunction 22 ====================
1028
============== Operations with window of another thread. =============
1028
============== Operations with window of another thread. =============
1029
======================================================================
1029
======================================================================
1030
Parameters:
1030
Parameters:
1031
  * eax = 18 - function number
1031
  * eax = 18 - function number
1032
  * ebx = 22 - subfunction number
1032
  * ebx = 22 - subfunction number
1033
  * ecx = operation type:
1033
  * ecx = operation type:
1034
    * 0 = minimize window of the thread with given slot number
1034
    * 0 = minimize window of the thread with given slot number
1035
    * 1 = minimize window of the thread with given identifier
1035
    * 1 = minimize window of the thread with given identifier
1036
    * 2 = restore window of the thread with given slot number
1036
    * 2 = restore window of the thread with given slot number
1037
    * 3 = restore window of the thread with given identifier
1037
    * 3 = restore window of the thread with given identifier
1038
  * edx = parameter (slot number or PID/TID)
1038
  * edx = parameter (slot number or PID/TID)
1039
Returned value:
1039
Returned value:
1040
  * eax = 0 - success
1040
  * eax = 0 - success
1041
  * eax = -1 - error (invalid identifier)
1041
  * eax = -1 - error (invalid identifier)
1042
Remarks:
1042
Remarks:
1043
  * The thread can minimize its window with subfunction 10.
1043
  * The thread can minimize its window with subfunction 10.
1044
  * One can restore and activate window simultaneously with
1044
  * One can restore and activate window simultaneously with
1045
    subfunction 3 (which requires slot number).
1045
    subfunction 3 (which requires slot number).
1046
 
1046
 
1047
======================================================================
1047
======================================================================
1048
==================== Function 20 - MIDI interface. ===================
1048
==================== Function 20 - MIDI interface. ===================
1049
======================================================================
1049
======================================================================
1050
 
1050
 
1051
----------------------- Subfunction 1 - reset ------------------------
1051
----------------------- Subfunction 1 - reset ------------------------
1052
Parameters:
1052
Parameters:
1053
  * eax = 20 - function number
1053
  * eax = 20 - function number
1054
  * ebx = 1 - subfunction number
1054
  * ebx = 1 - subfunction number
1055
 
1055
 
1056
-------------------- Subfunction 2 - output byte ---------------------
1056
-------------------- Subfunction 2 - output byte ---------------------
1057
Parameters:
1057
Parameters:
1058
  * eax = 20 - function number
1058
  * eax = 20 - function number
1059
  * ebx = 2 - subfunction number
1059
  * ebx = 2 - subfunction number
1060
  * cl = byte for output
1060
  * cl = byte for output
1061
Returned value (is the same for both subfunctions):
1061
Returned value (is the same for both subfunctions):
1062
  * eax = 0 - success
1062
  * eax = 0 - success
1063
  * eax = 1 - base port is not defined
1063
  * eax = 1 - base port is not defined
1064
Remarks:
1064
Remarks:
1065
  * Previously the base port must be defined by 
1065
  * Previously the base port must be defined by
1066
    subfunction 1 of function 21.
1066
    subfunction 1 of function 21.
1067
 
1067
 
1068
======================================================================
1068
======================================================================
1069
======== Function 21, subfunction 1 - set MPU MIDI base port. ========
1069
======== Function 21, subfunction 1 - set MPU MIDI base port. ========
1070
======================================================================
1070
======================================================================
1071
Parameters:
1071
Parameters:
1072
  * eax = 21 - function number
1072
  * eax = 21 - function number
1073
  * ebx = 1 - subfunction number
1073
  * ebx = 1 - subfunction number
1074
  * ecx = number of base port
1074
  * ecx = number of base port
1075
Returned value
1075
Returned value
1076
  * eax = 0 - success
1076
  * eax = 0 - success
1077
  * eax = -1 - erratic number of a port
1077
  * eax = -1 - erratic number of a port
1078
Remarks:
1078
Remarks:
1079
  * Number of a port must satisfy to conditions 0x100<=ecx<=0xFFFF.
1079
  * Number of a port must satisfy to conditions 0x100<=ecx<=0xFFFF.
1080
  * The installation of base is necessary for function 20.
1080
  * The installation of base is necessary for function 20.
1081
  * To get base port use subfunction 1 of function 26.
1081
  * To get base port use subfunction 1 of function 26.
1082
 
1082
 
1083
======================================================================
1083
======================================================================
1084
========== Function 21, subfunction 2 - set keyboard layout. =========
1084
========== Function 21, subfunction 2 - set keyboard layout. =========
1085
======================================================================
1085
======================================================================
1086
Keyboard layout is used to convert keyboard scancodes to ASCII-codes,
1086
Keyboard layout is used to convert keyboard scancodes to ASCII-codes,
1087
which will be read by function 2.
1087
which will be read by function 2.
1088
Parameters:
1088
Parameters:
1089
  * eax = 21 - function number
1089
  * eax = 21 - function number
1090
  * ebx = 2 - subfunction number
1090
  * ebx = 2 - subfunction number
1091
  * ecx = which layout to set:
1091
  * ecx = which layout to set:
1092
    * 1 = normal layout
1092
    * 1 = normal layout
1093
    * 2 = layout at pressed Shift
1093
    * 2 = layout at pressed Shift
1094
    * 3 = layout at pressed Alt
1094
    * 3 = layout at pressed Alt
1095
  * edx = pointer to layout - table of length 128 bytes
1095
  * edx = pointer to layout - table of length 128 bytes
1096
Or:
1096
Or:
1097
  * ecx = 9
1097
  * ecx = 9
1098
  * dx = country identifier (1=eng, 2=fi, 3=ger, 4=rus)
1098
  * dx = country identifier (1=eng, 2=fi, 3=ger, 4=rus)
1099
Returned value:
1099
Returned value:
1100
  * eax = 0 - success
1100
  * eax = 0 - success
1101
  * eax = 1 - incorrect parameter
1101
  * eax = 1 - incorrect parameter
1102
Remarks:
1102
Remarks:
1103
  * If Alt is pressed, the layout with Alt is used;
1103
  * If Alt is pressed, the layout with Alt is used;
1104
    if Alt is not pressed, but Shift is pressed,
1104
    if Alt is not pressed, but Shift is pressed,
1105
    the layout with Shift is used;
1105
    the layout with Shift is used;
1106
    if Alt and Shift are not pressed, but Ctrl is pressed, the normal
1106
    if Alt and Shift are not pressed, but Ctrl is pressed, the normal
1107
    layout is used and then from the code is subtracted 0x60;
1107
    layout is used and then from the code is subtracted 0x60;
1108
    if no control key is pressed, the normal layout is used.
1108
    if no control key is pressed, the normal layout is used.
1109
  * To get layout and country identifier use 
1109
  * To get layout and country identifier use
1110
    subfunction 2 of function 26.
1110
    subfunction 2 of function 26.
1111
  * Country identifier is global system variable, which is not used
1111
  * Country identifier is global system variable, which is not used
1112
    by the kernel itself; however the application '@panel' displays
1112
    by the kernel itself; however the application '@panel' displays
1113
    the corresponding icon.
1113
    the corresponding icon.
1114
  * The application @panel switches layouts on user request.
1114
  * The application @panel switches layouts on user request.
1115
 
1115
 
1116
======================================================================
1116
======================================================================
1117
============== Function 21, subfunction 3 - set CD base. =============
1117
============== Function 21, subfunction 3 - set CD base. =============
1118
======================================================================
1118
======================================================================
1119
Parameters:
1119
Parameters:
1120
  * eax = 21 - function number
1120
  * eax = 21 - function number
1121
  * ebx = 3 - subfunction number
1121
  * ebx = 3 - subfunction number
1122
  * ecx = CD base: 1=IDE0, 2=IDE1, 3=IDE2, 4=IDE3
1122
  * ecx = CD base: 1=IDE0, 2=IDE1, 3=IDE2, 4=IDE3
1123
Returned value:
1123
Returned value:
1124
  * eax = 0
1124
  * eax = 0
1125
Remarks:
1125
Remarks:
1126
  * CD base is used by function 24.
1126
  * CD base is used by function 24.
1127
  * To get CD base use subfunction 3 of function 26.
1127
  * To get CD base use subfunction 3 of function 26.
1128
 
1128
 
1129
======================================================================
1129
======================================================================
1130
====== Function 21, subfunction 4 - set Sound Blaster base port. =====
-
 
1131
======================================================================
-
 
1132
Removed
-
 
1133
 
-
 
1134
======================================================================
-
 
1135
========== Function 21, subfunction 5 - set system language. =========
1130
========== Function 21, subfunction 5 - set system language. =========
1136
======================================================================
1131
======================================================================
1137
Parameters:
1132
Parameters:
1138
  * eax = 21 - function number
1133
  * eax = 21 - function number
1139
  * ebx = 5 - subfunction number
1134
  * ebx = 5 - subfunction number
1140
  * ecx = system language (1=eng, 2=fi, 3=ger, 4=rus)
1135
  * ecx = system language (1=eng, 2=fi, 3=ger, 4=rus)
1141
Returned value:
1136
Returned value:
1142
  * eax = 0
1137
  * eax = 0
1143
Remarks:
1138
Remarks:
1144
  * System language is global system variable and is not used
1139
  * System language is global system variable and is not used
1145
    by the kernel itself, however application @panel draws the
1140
    by the kernel itself, however application @panel draws the
1146
    appropriate icon.
1141
    appropriate icon.
1147
  * Function does not check for correctness, as the kernel does not
1142
  * Function does not check for correctness, as the kernel does not
1148
    use this variable.
1143
    use this variable.
1149
  * To get system language use subfunction 5 of function 26.
1144
  * To get system language use subfunction 5 of function 26.
1150
 
1145
 
1151
======================================================================
1146
======================================================================
1152
============== Function 21, subfunction 7 - set HD base. =============
1147
============== Function 21, subfunction 7 - set HD base. =============
1153
======================================================================
1148
======================================================================
1154
The HD base defines hard disk to write with usage of obsolete
1149
The HD base defines hard disk to write with usage of obsolete
1155
syntax /HD in obsolete function 58; at usage of modern syntax
1150
syntax /HD in obsolete function 58; at usage of modern syntax
1156
/HD0,/HD1,/HD2,/HD3 base is set automatically.
1151
/HD0,/HD1,/HD2,/HD3 base is set automatically.
1157
Parameters:
1152
Parameters:
1158
  * eax = 21 - function number
1153
  * eax = 21 - function number
1159
  * ebx = 7 - subfunction number
1154
  * ebx = 7 - subfunction number
1160
  * ecx = HD base: 1=IDE0, 2=IDE1, 3=IDE2, 4=IDE3
1155
  * ecx = HD base: 1=IDE0, 2=IDE1, 3=IDE2, 4=IDE3
1161
Returned value:
1156
Returned value:
1162
  * eax = 0
1157
  * eax = 0
1163
Remarks:
1158
Remarks:
1164
  * Any application at any time can change the base.
1159
  * Any application at any time can change the base.
1165
  * Do not change base, when any application works with hard disk.
1160
  * Do not change base, when any application works with hard disk.
1166
    If you do not want system bugs.
1161
    If you do not want system bugs.
1167
  * To get HD base use subfunction 7 of function 26.
1162
  * To get HD base use subfunction 7 of function 26.
1168
  * It is also necessary to define used partition of hard disk by 
1163
  * It is also necessary to define used partition of hard disk by
1169
    subfunction 8.
1164
    subfunction 8.
1170
 
1165
 
1171
======================================================================
1166
======================================================================
1172
========= Function 21, subfunction 8 - set used HD partition. ========
1167
========= Function 21, subfunction 8 - set used HD partition. ========
1173
======================================================================
1168
======================================================================
1174
The HD partition defines partition of the hard disk to write with
1169
The HD partition defines partition of the hard disk to write with
1175
usage of obsolete syntax /HD and obsolete function 58;
1170
usage of obsolete syntax /HD and obsolete function 58;
1176
at usage of functions 58 and 70 and modern syntax /HD0,/HD1,/HD2,/HD3
1171
at usage of functions 58 and 70 and modern syntax /HD0,/HD1,/HD2,/HD3
1177
base and partition are set automatically.
1172
base and partition are set automatically.
1178
Parameters:
1173
Parameters:
1179
  * eax = 21 - function number
1174
  * eax = 21 - function number
1180
  * ebx = 8 - subfunction number
1175
  * ebx = 8 - subfunction number
1181
  * ecx = HD partition (beginning from 1)
1176
  * ecx = HD partition (beginning from 1)
1182
Return value:
1177
Return value:
1183
  * eax = 0
1178
  * eax = 0
1184
Remarks:
1179
Remarks:
1185
  * Any application at any time can change partition.
1180
  * Any application at any time can change partition.
1186
  * Do not change partition when any application works with hard disk.
1181
  * Do not change partition when any application works with hard disk.
1187
    If you do not want system bugs.
1182
    If you do not want system bugs.
1188
  * To get used partition use subfunction 8 of function 26.
1183
  * To get used partition use subfunction 8 of function 26.
1189
  * There is no correctness checks.
1184
  * There is no correctness checks.
1190
  * To get the number of partitions of a hard disk use 
1185
  * To get the number of partitions of a hard disk use
1191
    subfunction 11 of function 18.
1186
    subfunction 11 of function 18.
1192
  * It is also necessary to define used HD base by subfunction 7.
1187
  * It is also necessary to define used HD base by subfunction 7.
1193
 
1188
 
1194
======================================================================
1189
======================================================================
1195
======== Function 21, subfunction 10 - set sound DMA channel. ========
-
 
1196
======================================================================
-
 
1197
Removed
-
 
1198
 
-
 
1199
======================================================================
-
 
1200
 Function 21, subfunction 11 - enable/disable low-level access to HD. 
1190
 Function 21, subfunction 11 - enable/disable low-level access to HD.
1201
======================================================================
1191
======================================================================
1202
Parameters:
1192
Parameters:
1203
  * eax = 21 - function number
1193
  * eax = 21 - function number
1204
  * ebx = 11 - subfunction number
1194
  * ebx = 11 - subfunction number
1205
  * ecx = 0/1 - disable/enable
1195
  * ecx = 0/1 - disable/enable
1206
Returned value:
1196
Returned value:
1207
  * eax = 0
1197
  * eax = 0
1208
Remarks:
1198
Remarks:
1209
  * Is used in LBA-read (subfunction 8 of function 58).
1199
  * Is used in LBA-read (subfunction 8 of function 58).
1210
  * The current implementation uses only low bit of ecx.
1200
  * The current implementation uses only low bit of ecx.
1211
  * To get current status use subfunction 11 of function 26.
1201
  * To get current status use subfunction 11 of function 26.
1212
 
1202
 
1213
======================================================================
1203
======================================================================
1214
 Function 21, subfunction 12 - enable/disable low-level access to PCI. 
1204
 Function 21, subfunction 12 - enable/disable low-level access to PCI.
1215
======================================================================
1205
======================================================================
1216
Parameters:
1206
Parameters:
1217
  * eax = 21 - function number
1207
  * eax = 21 - function number
1218
  * ebx = 12 - subfunction number
1208
  * ebx = 12 - subfunction number
1219
  * ecx = 0/1 - disable/enable
1209
  * ecx = 0/1 - disable/enable
1220
Returned value:
1210
Returned value:
1221
  * eax = 0
1211
  * eax = 0
1222
Remarks:
1212
Remarks:
1223
  * Is used in operations with PCI bus (function 62).
1213
  * Is used in operations with PCI bus (function 62).
1224
  * The current implementation uses only low bit of ecx.
1214
  * The current implementation uses only low bit of ecx.
1225
  * To get current status use subfunction 12 of function 26.
1215
  * To get current status use subfunction 12 of function 26.
1226
 
1216
 
1227
======================================================================
1217
======================================================================
1228
============ Function 21, subfunction 13, subsubfunction 1 ===========
1218
============ Function 21, subfunction 13, subsubfunction 1 ===========
1229
======== Initialize + get information on the driver vmode.mdr. =======
1219
======== Initialize + get information on the driver vmode.mdr. =======
1230
======================================================================
1220
======================================================================
1231
Parameters:
1221
Parameters:
1232
  * eax = 21 - function number
1222
  * eax = 21 - function number
1233
  * ebx = 13 - subfunction number
1223
  * ebx = 13 - subfunction number
1234
  * ecx = 1 - number of the driver function
1224
  * ecx = 1 - number of the driver function
1235
  * edx = pointer to 512-bytes buffer
1225
  * edx = pointer to 512-bytes buffer
1236
Returned value:
1226
Returned value:
1237
  * if driver is not loaded
1227
  * if driver is not loaded
1238
    (never happens in the current implementation):
1228
    (never happens in the current implementation):
1239
    * eax = -1
1229
    * eax = -1
1240
    * ebx, ecx destroyed
1230
    * ebx, ecx destroyed
1241
  * if driver is loaded:
1231
  * if driver is loaded:
1242
    * eax = 'MDAZ' (in fasm style, that is 'M' - low byte, 'Z' - high)
1232
    * eax = 'MDAZ' (in fasm style, that is 'M' - low byte, 'Z' - high)
1243
      - signature
1233
      - signature
1244
    * ebx = current frequency of the scanning (in Hz)
1234
    * ebx = current frequency of the scanning (in Hz)
1245
    * ecx destroyed
1235
    * ecx destroyed
1246
    * buffer pointed to by edx is filled
1236
    * buffer pointed to by edx is filled
1247
Format of the buffer:
1237
Format of the buffer:
1248
  * +0: 32*byte: driver name, "Trans VideoDriver"
1238
  * +0: 32*byte: driver name, "Trans VideoDriver"
1249
    (without quotes, supplemented by spaces)
1239
    (without quotes, supplemented by spaces)
1250
  * +32 = +0x20: dword: driver version (version x.y is encoded as
1240
  * +32 = +0x20: dword: driver version (version x.y is encoded as
1251
    y*65536+x), for the current implementation is 1 (1.0)
1241
    y*65536+x), for the current implementation is 1 (1.0)
1252
  * +36 = +0x24: 7*dword: reserved (0 in the current implementation)
1242
  * +36 = +0x24: 7*dword: reserved (0 in the current implementation)
1253
  * +64 = +0x40: 32*word: list of supported videomodes (each word
1243
  * +64 = +0x40: 32*word: list of supported videomodes (each word
1254
    is number of a videomode, after list itself there are zeroes)
1244
    is number of a videomode, after list itself there are zeroes)
1255
  * +128 = +0x80: 32*(5*word): list of supported frequences of the
1245
  * +128 = +0x80: 32*(5*word): list of supported frequences of the
1256
    scannings for videomodes: for each videomode listed in the
1246
    scannings for videomodes: for each videomode listed in the
1257
    previous field up to 5 supported frequences are given
1247
    previous field up to 5 supported frequences are given
1258
    (unused positions contain zeroes)
1248
    (unused positions contain zeroes)
1259
Remarks:
1249
Remarks:
1260
  * Function initializes the driver (if it is not initialized yet)
1250
  * Function initializes the driver (if it is not initialized yet)
1261
    and must be called first, before others (otherwise they will do
1251
    and must be called first, before others (otherwise they will do
1262
    nothing and return -1).
1252
    nothing and return -1).
1263
  * The current implementation supports only one frequency
1253
  * The current implementation supports only one frequency
1264
    of the scanning on videomode.
1254
    of the scanning on videomode.
1265
 
1255
 
1266
======================================================================
1256
======================================================================
1267
============ Function 21, subfunction 13, subsubfunction 2 ===========
1257
============ Function 21, subfunction 13, subsubfunction 2 ===========
1268
================ Get information on current videomode. ===============
1258
================ Get information on current videomode. ===============
1269
======================================================================
1259
======================================================================
1270
Parameters:
1260
Parameters:
1271
  * eax = 21 - function number
1261
  * eax = 21 - function number
1272
  * ebx = 13 - subfunction number
1262
  * ebx = 13 - subfunction number
1273
  * ecx = 2 - number of the driver function
1263
  * ecx = 2 - number of the driver function
1274
Returned value:
1264
Returned value:
1275
  * eax = -1 - driver is not loaded or not initialized;
1265
  * eax = -1 - driver is not loaded or not initialized;
1276
    ebx,ecx are destroyed
1266
    ebx,ecx are destroyed
1277
  * eax = [width]*65536 + [height]
1267
  * eax = [width]*65536 + [height]
1278
  * ebx = frequency of the vertical scanning (in Hz)
1268
  * ebx = frequency of the vertical scanning (in Hz)
1279
  * ecx = number of current videomode
1269
  * ecx = number of current videomode
1280
Remarks:
1270
Remarks:
1281
  * Driver must be initialized by call to 
1271
  * Driver must be initialized by call to
1282
    driver function 1.
1272
    driver function 1.
1283
  * If only screen sizes are required, it is more expedient to use
1273
  * If only screen sizes are required, it is more expedient to use
1284
    function 14 taking into account that it
1274
    function 14 taking into account that it
1285
    returns sizes on 1 less.
1275
    returns sizes on 1 less.
1286
 
1276
 
1287
======================================================================
1277
======================================================================
1288
=== Function 21, subfunction 13, subsubfunction 3 - set videomode. ===
1278
=== Function 21, subfunction 13, subsubfunction 3 - set videomode. ===
1289
======================================================================
1279
======================================================================
1290
Parameters:
1280
Parameters:
1291
  * eax = 21 - function number
1281
  * eax = 21 - function number
1292
  * ebx = 13 - subfunction number
1282
  * ebx = 13 - subfunction number
1293
  * ecx = 3 - number of the driver function
1283
  * ecx = 3 - number of the driver function
1294
  * edx = [scanning frequency]*65536 + [videomode number]
1284
  * edx = [scanning frequency]*65536 + [videomode number]
1295
Returned value:
1285
Returned value:
1296
  * eax = -1 - driver is not loaded, not initialized or
1286
  * eax = -1 - driver is not loaded, not initialized or
1297
    an error has occured
1287
    an error has occured
1298
  * eax = 0 - success
1288
  * eax = 0 - success
1299
  * ebx, ecx destroyed
1289
  * ebx, ecx destroyed
1300
Remarks:
1290
Remarks:
1301
  * Driver must be initialized by driver function 1.
1291
  * Driver must be initialized by driver function 1.
1302
  * The videomode number and frequency must be in the table
1292
  * The videomode number and frequency must be in the table
1303
    returned by driver function 1.
1293
    returned by driver function 1.
1304
 
1294
 
1305
======================================================================
1295
======================================================================
1306
============ Function 21, subfunction 13, subsubfunction 4 ===========
1296
============ Function 21, subfunction 13, subsubfunction 4 ===========
1307
================== Return to the initial videomode. ==================
1297
================== Return to the initial videomode. ==================
1308
======================================================================
1298
======================================================================
1309
Returns the screen to the videomode set at system boot.
1299
Returns the screen to the videomode set at system boot.
1310
Parameters:
1300
Parameters:
1311
  * eax = 21 - function number
1301
  * eax = 21 - function number
1312
  * ebx = 13 - subfunction number
1302
  * ebx = 13 - subfunction number
1313
  * ecx = 4 - number of the driver function
1303
  * ecx = 4 - number of the driver function
1314
Returned value:
1304
Returned value:
1315
  * eax = -1 - driver is not loaded or not initialized
1305
  * eax = -1 - driver is not loaded or not initialized
1316
  * eax = 0 - success
1306
  * eax = 0 - success
1317
  * ebx, ecx destroyed
1307
  * ebx, ecx destroyed
1318
Remarks:
1308
Remarks:
1319
  * Driver must be initialized by call to driver function 1.
1309
  * Driver must be initialized by call to driver function 1.
1320
 
1310
 
1321
======================================================================
1311
======================================================================
1322
============ Function 21, subfunction 13, subsubfunction 5 ===========
1312
============ Function 21, subfunction 13, subsubfunction 5 ===========
1323
===== Increase/decrease the size of the visible area of monitor. =====
1313
===== Increase/decrease the size of the visible area of monitor. =====
1324
======================================================================
1314
======================================================================
1325
Parameters:
1315
Parameters:
1326
  * eax = 21 - function number
1316
  * eax = 21 - function number
1327
  * ebx = 13 - subfunction number
1317
  * ebx = 13 - subfunction number
1328
  * ecx = 5 - number of the driver function
1318
  * ecx = 5 - number of the driver function
1329
  * edx = 0/1 - decrease/increase horizontal size on 1 position
1319
  * edx = 0/1 - decrease/increase horizontal size on 1 position
1330
  * edx = 2/3 - is not supported in the current implementation;
1320
  * edx = 2/3 - is not supported in the current implementation;
1331
    is planned as decrease/increase vertical size on 1 position
1321
    is planned as decrease/increase vertical size on 1 position
1332
Returned value:
1322
Returned value:
1333
  * eax = -1 - driver is not loaded or not initialized
1323
  * eax = -1 - driver is not loaded or not initialized
1334
  * eax = 0 - success
1324
  * eax = 0 - success
1335
  * ebx, ecx destroyed
1325
  * ebx, ecx destroyed
1336
Remarks:
1326
Remarks:
1337
  * Driver must be initialized by call to driver function 1.
1327
  * Driver must be initialized by call to driver function 1.
1338
  * Function influences only the physical size of the screen image;
1328
  * Function influences only the physical size of the screen image;
1339
    the logical size (number of pixels) does not change.
1329
    the logical size (number of pixels) does not change.
1340
 
1330
 
1341
======================================================================
1331
======================================================================
1342
================= Function 22 - set system date/time. ================
1332
================= Function 22 - set system date/time. ================
1343
======================================================================
1333
======================================================================
1344
Parameters:
1334
Parameters:
1345
  * eax = 22 - function number
1335
  * eax = 22 - function number
1346
  * ebx = 0 - set time
1336
  * ebx = 0 - set time
1347
    * ecx = 0x00SSMMHH - time in the binary-decimal code (BCD):
1337
    * ecx = 0x00SSMMHH - time in the binary-decimal code (BCD):
1348
    * HH=hour 00..23
1338
    * HH=hour 00..23
1349
    * MM=minute 00..59
1339
    * MM=minute 00..59
1350
    * SS=second 00..59
1340
    * SS=second 00..59
1351
  * ebx = 1 - set date
1341
  * ebx = 1 - set date
1352
    * ecx = 0x00DDMMYY - date in the binary-decimal code (BCD):
1342
    * ecx = 0x00DDMMYY - date in the binary-decimal code (BCD):
1353
    * DD=day 01..31
1343
    * DD=day 01..31
1354
    * MM=month 01..12
1344
    * MM=month 01..12
1355
    * YY=year 00..99
1345
    * YY=year 00..99
1356
  * ebx = 2 - set day of week
1346
  * ebx = 2 - set day of week
1357
    * ecx = 1 for Sunday, ..., 7 for Saturday
1347
    * ecx = 1 for Sunday, ..., 7 for Saturday
1358
  * ebx = 3 - set alarm clock
1348
  * ebx = 3 - set alarm clock
1359
    * ecx = 0x00SSMMHH
1349
    * ecx = 0x00SSMMHH
1360
Returned value:
1350
Returned value:
1361
  * eax = 0 - success
1351
  * eax = 0 - success
1362
  * eax = 1 - incorrect parameter
1352
  * eax = 1 - incorrect parameter
1363
  * eax = 2 - CMOS-battery was unloaded
1353
  * eax = 2 - CMOS-battery was unloaded
1364
Remarks:
1354
Remarks:
1365
  * Value of installation of day of week seems to be doubtful,
1355
  * Value of installation of day of week seems to be doubtful,
1366
    as it a little where is used
1356
    as it a little where is used
1367
    (day of week can be calculated by date).
1357
    (day of week can be calculated by date).
1368
  * Alarm clock can be set on operation in the given time every day.
1358
  * Alarm clock can be set on operation in the given time every day.
1369
    But there is no existing system function to disable it.
1359
    But there is no existing system function to disable it.
1370
  * Operation of alarm clock consists in generation IRQ8.
1360
  * Operation of alarm clock consists in generation IRQ8.
1371
  * Generally CMOS supports for alarm clock set of value 0xFF
1361
  * Generally CMOS supports for alarm clock set of value 0xFF
1372
    as one of parameters and it means that the appropriate parameter
1362
    as one of parameters and it means that the appropriate parameter
1373
    is ignored. But current implementation does not allow this
1363
    is ignored. But current implementation does not allow this
1374
    (will return 1).
1364
    (will return 1).
1375
  * Alarm clock is a global system resource; the set of
1365
  * Alarm clock is a global system resource; the set of
1376
    an alarm clock cancels automatically the previous set.
1366
    an alarm clock cancels automatically the previous set.
1377
    However, at moment no program uses it.
1367
    However, at moment no program uses it.
1378
 
1368
 
1379
======================================================================
1369
======================================================================
1380
============= Function 23 - wait for event with timeout. =============
1370
============= Function 23 - wait for event with timeout. =============
1381
======================================================================
1371
======================================================================
1382
If the message queue is empty, waits for new message in the queue,
1372
If the message queue is empty, waits for new message in the queue,
1383
but no more than given time. Then reads out a message from the queue.
1373
but no more than given time. Then reads out a message from the queue.
1384
 
1374
 
1385
Parameters:
1375
Parameters:
1386
  * eax = 23 - function number
1376
  * eax = 23 - function number
1387
  * ebx = timeout (in 1/100 of second)
1377
  * ebx = timeout (in 1/100 of second)
1388
Returned value:
1378
Returned value:
1389
  * eax = 0 - the message queue is empty
1379
  * eax = 0 - the message queue is empty
1390
  * otherwise eax = event (see the list of events)
1380
  * otherwise eax = event (see the list of events)
1391
Remarks:
1381
Remarks:
1392
  * Only those events are taken into account, which enter into
1382
  * Only those events are taken into account, which enter into
1393
    the mask set by function 40. By default it is
1383
    the mask set by function 40. By default it is
1394
    redraw, key and button events.
1384
    redraw, key and button events.
1395
  * To check for presence of a message in the queue use function 11.
1385
  * To check for presence of a message in the queue use function 11.
1396
    To wait without timeout use function 10.
1386
    To wait without timeout use function 10.
1397
  * Transmission ebx=0 results in immediate returning eax=0.
1387
  * Transmission ebx=0 results in immediate returning eax=0.
1398
  * Current implementation returns immediately with eax=0,
1388
  * Current implementation returns immediately with eax=0,
1399
    if the addition of ebx with the current value of time counter
1389
    if the addition of ebx with the current value of time counter
1400
    makes 32-bit overflow.
1390
    makes 32-bit overflow.
1401
 
1391
 
1402
======================================================================
1392
======================================================================
1403
======== Function 24, subfunction 1 - begin to play CD-audio. ========
1393
======== Function 24, subfunction 1 - begin to play CD-audio. ========
1404
======================================================================
1394
======================================================================
1405
Parameters:
1395
Parameters:
1406
  * eax = 24 - function number
1396
  * eax = 24 - function number
1407
  * ebx = 1 - subfunction number
1397
  * ebx = 1 - subfunction number
1408
  * ecx = 0x00FRSSMM, where
1398
  * ecx = 0x00FRSSMM, where
1409
    * MM = starting minute
1399
    * MM = starting minute
1410
    * SS = starting second
1400
    * SS = starting second
1411
    * FR = starting frame
1401
    * FR = starting frame
1412
Returned value:
1402
Returned value:
1413
  * eax = 0 - success
1403
  * eax = 0 - success
1414
  * eax = 1 - CD base is not defined
1404
  * eax = 1 - CD base is not defined
1415
Remarks:
1405
Remarks:
1416
  * Previously CD base must be defined by the call to 
1406
  * Previously CD base must be defined by the call to
1417
    subfunction 3 of function 21.
1407
    subfunction 3 of function 21.
1418
  * One second includes 75 frames, one minute includes 60 seconds.
1408
  * One second includes 75 frames, one minute includes 60 seconds.
1419
  * The function is asynchronous (returns control, when play begins).
1409
  * The function is asynchronous (returns control, when play begins).
1420
 
1410
 
1421
======================================================================
1411
======================================================================
1422
======= Function 24, subfunction 2 - get information on tracks. ======
1412
======= Function 24, subfunction 2 - get information on tracks. ======
1423
======================================================================
1413
======================================================================
1424
Parameters:
1414
Parameters:
1425
  * eax = 24 - function number
1415
  * eax = 24 - function number
1426
  * ebx = 2 - subfunction number
1416
  * ebx = 2 - subfunction number
1427
  * ecx = pointer to the buffer for the table
1417
  * ecx = pointer to the buffer for the table
1428
    (maximum 8*64h+4 bytes=100 tracks)
1418
    (maximum 8*64h+4 bytes=100 tracks)
1429
Returned value:
1419
Returned value:
1430
  * eax = 0 - success
1420
  * eax = 0 - success
1431
  * eax = 1 - CD base is not defined
1421
  * eax = 1 - CD base is not defined
1432
Remarks:
1422
Remarks:
1433
  * The format of the table with tracks information is the same as
1423
  * The format of the table with tracks information is the same as
1434
    for ATAPI-CD command 43h (READ TOC), usual table (subcommand 00h).
1424
    for ATAPI-CD command 43h (READ TOC), usual table (subcommand 00h).
1435
    Function returns addresses in MSF.
1425
    Function returns addresses in MSF.
1436
  * Previously CD base port must be set by call to 
1426
  * Previously CD base port must be set by call to
1437
    subfunction 3 of function 21.
1427
    subfunction 3 of function 21.
1438
  * Function returns information only about no more than 100
1428
  * Function returns information only about no more than 100
1439
    first tracks. In most cases it is enough.
1429
    first tracks. In most cases it is enough.
1440
 
1430
 
1441
======================================================================
1431
======================================================================
1442
========== Function 24, subfunction 3 - stop play CD-audio. ==========
1432
========== Function 24, subfunction 3 - stop play CD-audio. ==========
1443
======================================================================
1433
======================================================================
1444
Parameters:
1434
Parameters:
1445
  * eax = 24 - function number
1435
  * eax = 24 - function number
1446
  * ebx = 1 - subfunction number
1436
  * ebx = 1 - subfunction number
1447
Returned value:
1437
Returned value:
1448
  * eax = 0 - success
1438
  * eax = 0 - success
1449
  * eax = 1 - CD base is not defined
1439
  * eax = 1 - CD base is not defined
1450
Remarks:
1440
Remarks:
1451
  * Previously CD base port must be defined by call to 
1441
  * Previously CD base port must be defined by call to
1452
    subfunction 3 of function 21.
1442
    subfunction 3 of function 21.
1453
 
1443
 
1454
======================================================================
1444
======================================================================
1455
======= Function 24, subfunction 4 - eject tray of disk drive. =======
1445
======= Function 24, subfunction 4 - eject tray of disk drive. =======
1456
======================================================================
1446
======================================================================
1457
Parameters:
1447
Parameters:
1458
  * eax = 24 - function number
1448
  * eax = 24 - function number
1459
  * ebx = 4 - subfunction number
1449
  * ebx = 4 - subfunction number
1460
  * ecx = position of CD/DVD-drive
1450
  * ecx = position of CD/DVD-drive
1461
      (from 0=Primary Master to 3=Secondary Slave)
1451
      (from 0=Primary Master to 3=Secondary Slave)
1462
Returned value:
1452
Returned value:
1463
  * function does not return value
1453
  * function does not return value
1464
Remarks:
1454
Remarks:
1465
  * The function is supported only for ATAPI devices (CD and DVD).
1455
  * The function is supported only for ATAPI devices (CD and DVD).
1466
  * When the tray is being ejected,
1456
  * When the tray is being ejected,
1467
    manual control of tray is unlocked.
1457
    manual control of tray is unlocked.
1468
  * When the tray is being ejected, the code clears the cache for
1458
  * When the tray is being ejected, the code clears the cache for
1469
    corresponding device.
1459
    corresponding device.
1470
  * An example of usage of the function is the application CD_tray.
1460
  * An example of usage of the function is the application CD_tray.
1471
 
1461
 
1472
======================================================================
1462
======================================================================
1473
======== Function 24, subfunction 5 - load tray of disk drive. =======
1463
======== Function 24, subfunction 5 - load tray of disk drive. =======
1474
======================================================================
1464
======================================================================
1475
Parameters:
1465
Parameters:
1476
  * eax = 24 - function number
1466
  * eax = 24 - function number
1477
  * ebx = 5 - subfunction number
1467
  * ebx = 5 - subfunction number
1478
  * ecx = position of CD/DVD-drive
1468
  * ecx = position of CD/DVD-drive
1479
      (from 0=Primary Master to 3=Secondary Slave)
1469
      (from 0=Primary Master to 3=Secondary Slave)
1480
Returned value:
1470
Returned value:
1481
  * function does not return value
1471
  * function does not return value
1482
Remarks:
1472
Remarks:
1483
  * The function is supported only for ATAPI devices (CD and DVD).
1473
  * The function is supported only for ATAPI devices (CD and DVD).
1484
  * An example of usage of the function is the application CD_tray.
1474
  * An example of usage of the function is the application CD_tray.
1485
 
1475
 
1486
======================================================================
1476
======================================================================
1487
=================== Function 25 - set SBPro volume. ==================
-
 
1488
======================================================================
-
 
1489
Removed
-
 
1490
 
-
 
1491
======================================================================
-
 
1492
======== Function 26, subfunction 1 - get MPU MIDI base port. ========
1477
======== Function 26, subfunction 1 - get MPU MIDI base port. ========
1493
======================================================================
1478
======================================================================
1494
Parameters:
1479
Parameters:
1495
  * eax = 26 - function number
1480
  * eax = 26 - function number
1496
  * ebx = 1 - subfunction number
1481
  * ebx = 1 - subfunction number
1497
Returned value:
1482
Returned value:
1498
  * eax = port number
1483
  * eax = port number
1499
Parameters:
1484
Parameters:
1500
  * To set base port use subfunction 1 of function 21.
1485
  * To set base port use subfunction 1 of function 21.
1501
 
1486
 
1502
======================================================================
1487
======================================================================
1503
========== Function 26, subfunction 2 - get keyboard layout. =========
1488
========== Function 26, subfunction 2 - get keyboard layout. =========
1504
======================================================================
1489
======================================================================
1505
The keyboard layout is used to convert keyboard scancodes to
1490
The keyboard layout is used to convert keyboard scancodes to
1506
ASCII-codes for function 2.
1491
ASCII-codes for function 2.
1507
Parameters:
1492
Parameters:
1508
  * eax = 26 - function number
1493
  * eax = 26 - function number
1509
  * ebx = 2 - subfunction number
1494
  * ebx = 2 - subfunction number
1510
  * ecx = what layout to get:
1495
  * ecx = what layout to get:
1511
    * 1 = normal layout
1496
    * 1 = normal layout
1512
    * 2 = layout with pressed Shift
1497
    * 2 = layout with pressed Shift
1513
    * 3 = layout with pressed Alt
1498
    * 3 = layout with pressed Alt
1514
  * edx = pointer to the 128-bytes buffer, where the layout will be
1499
  * edx = pointer to the 128-bytes buffer, where the layout will be
1515
    copied
1500
    copied
1516
Returned value:
1501
Returned value:
1517
  * function does not return value
1502
  * function does not return value
1518
Or:
1503
Or:
1519
  * eax = 26 - function number
1504
  * eax = 26 - function number
1520
  * ebx = 2 - subfunction number
1505
  * ebx = 2 - subfunction number
1521
  * ecx = 9
1506
  * ecx = 9
1522
Returned value:
1507
Returned value:
1523
  * eax = country identifier (1=eng, 2=fi, 3=ger, 4=rus)
1508
  * eax = country identifier (1=eng, 2=fi, 3=ger, 4=rus)
1524
Remarks:
1509
Remarks:
1525
  * If Alt is pressed, the layout with Alt is used;
1510
  * If Alt is pressed, the layout with Alt is used;
1526
    if Alt is not pressed, but Shift is pressed,
1511
    if Alt is not pressed, but Shift is pressed,
1527
    the layout with Shift is used;
1512
    the layout with Shift is used;
1528
    if Alt and Shift are not pressed, but Ctrl is pressed, the normal
1513
    if Alt and Shift are not pressed, but Ctrl is pressed, the normal
1529
    layout is used and then from the code is subtracted 0x60;
1514
    layout is used and then from the code is subtracted 0x60;
1530
    if no control key is pressed, the normal layout is used.
1515
    if no control key is pressed, the normal layout is used.
1531
  * To set layout and country identifier use 
1516
  * To set layout and country identifier use
1532
    subfunction 2 of function 21.
1517
    subfunction 2 of function 21.
1533
  * Country identifier is global system variable, which is not used
1518
  * Country identifier is global system variable, which is not used
1534
    by the kernel itself; however the application '@panel' displays
1519
    by the kernel itself; however the application '@panel' displays
1535
    the corresponding icon (using this function).
1520
    the corresponding icon (using this function).
1536
  * The application @panel switches layouts on user request.
1521
  * The application @panel switches layouts on user request.
1537
 
1522
 
1538
======================================================================
1523
======================================================================
1539
============== Function 26, subfunction 3 - get CD base. =============
1524
============== Function 26, subfunction 3 - get CD base. =============
1540
======================================================================
1525
======================================================================
1541
Parameters:
1526
Parameters:
1542
  * eax = 26 - function number
1527
  * eax = 26 - function number
1543
  * ebx = 3 - subfunction number
1528
  * ebx = 3 - subfunction number
1544
Returned value:
1529
Returned value:
1545
  * eax = CD base: 1=IDE0, 2=IDE1, 3=IDE2, 4=IDE3
1530
  * eax = CD base: 1=IDE0, 2=IDE1, 3=IDE2, 4=IDE3
1546
Remarks:
1531
Remarks:
1547
  * CD base is used by function 24.
1532
  * CD base is used by function 24.
1548
  * To set CD base use subfunction 3 of function 21.
1533
  * To set CD base use subfunction 3 of function 21.
1549
 
1534
 
1550
======================================================================
1535
======================================================================
1551
====== Function 26, subfunction 4 - get Sound Blaster base port. =====
-
 
1552
======================================================================
-
 
1553
Removed
-
 
1554
 
-
 
1555
======================================================================
-
 
1556
========== Function 26, subfunction 5 - get system language. =========
1536
========== Function 26, subfunction 5 - get system language. =========
1557
======================================================================
1537
======================================================================
1558
Parameters:
1538
Parameters:
1559
  * eax = 26 - function number
1539
  * eax = 26 - function number
1560
  * ebx = 5 - subfunction number
1540
  * ebx = 5 - subfunction number
1561
Returned value:
1541
Returned value:
1562
  * eax = system language (1=eng, 2=fi, 3=ger, 4=rus)
1542
  * eax = system language (1=eng, 2=fi, 3=ger, 4=rus)
1563
Remarks:
1543
Remarks:
1564
  * System language is global system variable and is not used
1544
  * System language is global system variable and is not used
1565
    by the kernel itself, however application @panel draws the
1545
    by the kernel itself, however application @panel draws the
1566
    appropriate icon (using this function).
1546
    appropriate icon (using this function).
1567
  * To set system language use subfunction 5 of function 21.
1547
  * To set system language use subfunction 5 of function 21.
1568
 
1548
 
1569
======================================================================
1549
======================================================================
1570
============== Function 26, subfunction 7 - get HD base. =============
1550
============== Function 26, subfunction 7 - get HD base. =============
1571
======================================================================
1551
======================================================================
1572
The HD base defines hard disk to write with usage of obsolete
1552
The HD base defines hard disk to write with usage of obsolete
1573
syntax /HD in obsolete function 58; at usage of modern syntax
1553
syntax /HD in obsolete function 58; at usage of modern syntax
1574
/HD0,/HD1,/HD2,/HD3 base is set automatically.
1554
/HD0,/HD1,/HD2,/HD3 base is set automatically.
1575
Parameters:
1555
Parameters:
1576
  * eax = 26 - function number
1556
  * eax = 26 - function number
1577
  * ebx = 7 - subfunction number
1557
  * ebx = 7 - subfunction number
1578
Returned value:
1558
Returned value:
1579
  * eax = HD base: 1=IDE0, 2=IDE1, 3=IDE2, 4=IDE3
1559
  * eax = HD base: 1=IDE0, 2=IDE1, 3=IDE2, 4=IDE3
1580
Remarks:
1560
Remarks:
1581
  * Any application in any time can change HD base.
1561
  * Any application in any time can change HD base.
1582
  * To set base use subfunction 7 of function 21.
1562
  * To set base use subfunction 7 of function 21.
1583
  * To get used partition of hard disk use subfunction 8.
1563
  * To get used partition of hard disk use subfunction 8.
1584
 
1564
 
1585
======================================================================
1565
======================================================================
1586
========= Function 26, subfunction 8 - get used HD partition. ========
1566
========= Function 26, subfunction 8 - get used HD partition. ========
1587
======================================================================
1567
======================================================================
1588
The HD partition defines partition of the hard disk to write with
1568
The HD partition defines partition of the hard disk to write with
1589
usage of obsolete syntax /HD in obsolete function 58;
1569
usage of obsolete syntax /HD in obsolete function 58;
1590
at usage of functions 58 and 70 and modern syntax /HD0,/HD1,/HD2,/HD3
1570
at usage of functions 58 and 70 and modern syntax /HD0,/HD1,/HD2,/HD3
1591
base and partition are set automatically.
1571
base and partition are set automatically.
1592
Parameters:
1572
Parameters:
1593
  * eax = 26 - function number
1573
  * eax = 26 - function number
1594
  * ebx = 8 - subfunction number
1574
  * ebx = 8 - subfunction number
1595
Returned value:
1575
Returned value:
1596
  * eax = HD partition (beginning from 1)
1576
  * eax = HD partition (beginning from 1)
1597
Remarks:
1577
Remarks:
1598
  * Any application in any time can change partition.
1578
  * Any application in any time can change partition.
1599
  * To set partition use subfunction 8 of function 21.
1579
  * To set partition use subfunction 8 of function 21.
1600
  * To get number of partitions on a hard disk use
1580
  * To get number of partitions on a hard disk use
1601
    subfunction 11 of function 18.
1581
    subfunction 11 of function 18.
1602
  * To get base of used hard disk, use subfunction 7.
1582
  * To get base of used hard disk, use subfunction 7.
1603
 
1583
 
1604
======================================================================
1584
======================================================================
1605
=== Function 26, subfunction 9 - get the value of the time counter. ==
1585
=== Function 26, subfunction 9 - get the value of the time counter. ==
1606
======================================================================
1586
======================================================================
1607
Parameters:
1587
Parameters:
1608
  * eax = 26 - function number
1588
  * eax = 26 - function number
1609
  * ebx = 9 - subfunction number
1589
  * ebx = 9 - subfunction number
1610
Returned value:
1590
Returned value:
1611
  * eax = number of 1/100s of second, past from the system boot time
1591
  * eax = number of 1/100s of second, past from the system boot time
1612
Remarks:
1592
Remarks:
1613
  * Counter takes modulo 2^32, that correspond to a little more
1593
  * Counter takes modulo 2^32, that correspond to a little more
1614
    than 497 days.
1594
    than 497 days.
1615
  * To get system time use function 3.
1595
  * To get system time use function 3.
1616
 
1596
 
1617
======================================================================
1597
======================================================================
1618
======== Function 26, subfunction 10 - get sound DMA channel. ========
-
 
1619
======================================================================
-
 
1620
Removed
-
 
1621
 
-
 
1622
======================================================================
-
 
1623
===================== Function 26, subfunction 11 ====================
1598
===================== Function 26, subfunction 11 ====================
1624
========== Find out whether low-level HD access is enabled. ==========
1599
========== Find out whether low-level HD access is enabled. ==========
1625
======================================================================
1600
======================================================================
1626
Parameters:
1601
Parameters:
1627
  * eax = 26 - function number
1602
  * eax = 26 - function number
1628
  * ebx = 11 - subfunction number
1603
  * ebx = 11 - subfunction number
1629
Returned value:
1604
Returned value:
1630
  * eax = 0/1 - disabled/enabled
1605
  * eax = 0/1 - disabled/enabled
1631
Remarks:
1606
Remarks:
1632
  * Is used in LBA read (subfunction 8 of function 58).
1607
  * Is used in LBA read (subfunction 8 of function 58).
1633
  * To set current state use subfunction 11 of function 21.
1608
  * To set current state use subfunction 11 of function 21.
1634
 
1609
 
1635
======================================================================
1610
======================================================================
1636
===================== Function 26, subfunction 12 ====================
1611
===================== Function 26, subfunction 12 ====================
1637
========== Find out whether low-level PCI access is enabled. =========
1612
========== Find out whether low-level PCI access is enabled. =========
1638
======================================================================
1613
======================================================================
1639
Parameters:
1614
Parameters:
1640
  * eax = 26 - function number
1615
  * eax = 26 - function number
1641
  * ebx = 12 - subfunction number
1616
  * ebx = 12 - subfunction number
1642
Returned value:
1617
Returned value:
1643
  * eax = 0/1 - disabled/enabled
1618
  * eax = 0/1 - disabled/enabled
1644
Remarks:
1619
Remarks:
1645
  * Is used by operations with PCI bus (function 62).
1620
  * Is used by operations with PCI bus (function 62).
1646
  * The current implementation uses only low bit of ecx.
1621
  * The current implementation uses only low bit of ecx.
1647
  * To set the current state use subfunction 12 of function 21.
1622
  * To set the current state use subfunction 12 of function 21.
1648
 
1623
 
1649
======================================================================
1624
======================================================================
1650
=================== Function 28 - set SB16 volume. ===================
-
 
1651
======================================================================
-
 
1652
Removed
-
 
1653
 
-
 
1654
======================================================================
-
 
1655
=================== Function 29 - get system date. ===================
1625
=================== Function 29 - get system date. ===================
1656
======================================================================
1626
======================================================================
1657
Parameters:
1627
Parameters:
1658
  * eax = 29 - function number
1628
  * eax = 29 - function number
1659
Returned value:
1629
Returned value:
1660
  * eax = 0x00DDMMYY, where
1630
  * eax = 0x00DDMMYY, where
1661
    (binary-decimal coding, BCD, is used)
1631
    (binary-decimal coding, BCD, is used)
1662
  * YY = two low digits of year (00..99)
1632
  * YY = two low digits of year (00..99)
1663
  * MM = month (01..12)
1633
  * MM = month (01..12)
1664
  * DD = day (01..31)
1634
  * DD = day (01..31)
1665
Remarks:
1635
Remarks:
1666
  * To set system date use function 22.
1636
  * To set system date use function 22.
1667
 
1637
 
1668
======================================================================
1638
======================================================================
1669
============= Function 30 - work with the current folder. ============
1639
============= Function 30 - work with the current folder. ============
1670
======================================================================
1640
======================================================================
1671
 
1641
 
1672
--------- Subfunction 1 - set current folder for the thread. ---------
1642
--------- Subfunction 1 - set current folder for the thread. ---------
1673
Parameters:
1643
Parameters:
1674
  * eax = 30 - function number
1644
  * eax = 30 - function number
1675
  * ebx = 1 - subfunction number
1645
  * ebx = 1 - subfunction number
1676
  * ecx = pointer to ASCIIZ-string with the path to new current folder
1646
  * ecx = pointer to ASCIIZ-string with the path to new current folder
1677
Returned value:
1647
Returned value:
1678
  * function does not return value
1648
  * function does not return value
1679
 
1649
 
1680
--------- Subfunction 2 - get current folder for the thread. ---------
1650
--------- Subfunction 2 - get current folder for the thread. ---------
1681
Parameters:
1651
Parameters:
1682
  * eax = 30 - function number
1652
  * eax = 30 - function number
1683
  * ebx = 2 - subfunction number
1653
  * ebx = 2 - subfunction number
1684
  * ecx = pointer to buffer
1654
  * ecx = pointer to buffer
1685
  * edx = size of buffer
1655
  * edx = size of buffer
1686
Returned value:
1656
Returned value:
1687
  * eax = size of the current folder's name (including terminating 0)
1657
  * eax = size of the current folder's name (including terminating 0)
1688
Remarks:
1658
Remarks:
1689
  * If the buffer is too small to hold all data, only first (edx-1)
1659
  * If the buffer is too small to hold all data, only first (edx-1)
1690
    bytes are copied and than terminating 0 is inserted.
1660
    bytes are copied and than terminating 0 is inserted.
1691
 
1661
 
1692
======================================================================
1662
======================================================================
-
 
1663
=============== Function 32 - delete file from ramdisk. ==============
-
 
1664
======================================================================
-
 
1665
Parameters:
-
 
1666
  * eax = 32 - function number
-
 
1667
  * ebx = pointer to the filename
-
 
1668
Returned value:
-
 
1669
  * eax = 0 - success; otherwise file system error code
-
 
1670
Remarks:
-
 
1671
  * This function is obsolete; function 58 allows to fulfill
-
 
1672
    the same operations with the extended possibilities.
-
 
1673
  * The current implementation returns only values 0(success) and
-
 
1674
    5(file not found).
-
 
1675
  * The filename must be either in the format 8+3 characters
-
 
1676
    (first 8 characters - name itself, last 3 - extension,
-
 
1677
    the short names and extensions are supplemented with spaces),
-
 
1678
    or in the format 8.3 characters "FILE.EXT"/"FILE.EX "
-
 
1679
    (name no more than 8 characters, dot, extension 3 characters
-
 
1680
    supplemented if necessary by spaces).
-
 
1681
    The filename must be written with capital letters. The terminating
-
 
1682
    character with code 0 is not necessary (not ASCIIZ-string).
-
 
1683
  * This function does not support folders on the ramdisk.
-
 
1684
 
-
 
1685
======================================================================
-
 
1686
================ Function 33 - write file to ramdisk. ================
-
 
1687
======================================================================
-
 
1688
Parameters:
-
 
1689
  * eax = 33 - function number
-
 
1690
  * ebx = pointer to the filename
-
 
1691
  * ecx = pointer to data for writing
-
 
1692
  * edx = number of bytes for writing
-
 
1693
  * should be set esi=0
-
 
1694
Returned value:
-
 
1695
  * eax = 0 - success, otherwise file system error code
-
 
1696
Remarks:
-
 
1697
  * This function is obsolete; function 70 allows to fulfil
-
 
1698
    the same operations with extended possibilities.
-
 
1699
  * If esi contains non-zero value and selected file already exists,
-
 
1700
    one more file with the same name will be created.
-
 
1701
  * Otherwise file will be overwritten.
-
 
1702
  * The filename must be either in the format 8+3 characters
-
 
1703
    (first 8 characters - name itself, last 3 - extension,
-
 
1704
    the short names and extensions are supplemented with spaces),
-
 
1705
    or in the format 8.3 characters "FILE.EXT"/"FILE.EX "
-
 
1706
    (name no more than 8 characters, dot, extension 3 characters
-
 
1707
    supplemented if necessary by spaces).
-
 
1708
    The filename must be written with capital letters. The terminating
-
 
1709
    character with code 0 is not necessary (not ASCIIZ-string).
-
 
1710
  * This function does not support folders on the ramdisk.
-
 
1711
 
-
 
1712
======================================================================
1693
======= Function 35 - read the color of a pixel on the screen. =======
1713
======= Function 35 - read the color of a pixel on the screen. =======
1694
======================================================================
1714
======================================================================
1695
Parameters:
1715
Parameters:
1696
  * eax = 35
1716
  * eax = 35
1697
  * ebx = y*xsize+x, where
1717
  * ebx = y*xsize+x, where
1698
  * (x,y) = coordinates of a pixel (beginning from 0)
1718
  * (x,y) = coordinates of a pixel (beginning from 0)
1699
  * xsize = horizontal screen size
1719
  * xsize = horizontal screen size
1700
Returned value:
1720
Returned value:
1701
  * eax = color 0x00RRGGBB
1721
  * eax = color 0x00RRGGBB
1702
Remarks:
1722
Remarks:
1703
  * To get screen sizes use function 14. Pay attention,
1723
  * To get screen sizes use function 14. Pay attention,
1704
    that it subtracts 1 from both sizes.
1724
    that it subtracts 1 from both sizes.
1705
  * There is also direct access (without any system calls)
1725
  * There is also direct access (without any system calls)
1706
    to videomemory through the selector gs. To get parameters of
1726
    to videomemory through the selector gs. To get parameters of
1707
    the current videomode, use function 61.
1727
    the current videomode, use function 61.
1708
 
1728
 
1709
======================================================================
1729
======================================================================
-
 
1730
=================== Function 36 - read screen area. ==================
-
 
1731
======================================================================
-
 
1732
Paramters:
-
 
1733
  * eax = 36 - function number
-
 
1734
  * ebx = pointer to the previously allocated memory area,
-
 
1735
        where will be placed the image in the format BBGGRRBBGGRR...
-
 
1736
  * ecx = [size on axis x]*65536 + [size on axis y]
-
 
1737
  * edx = [coordinate on axis x]*65536 + [coordinate on axis y]
-
 
1738
Returned value:
-
 
1739
  * function does not return value
-
 
1740
Remarks:
-
 
1741
  * Coordinates of the image are coordinates of the upper left corner
-
 
1742
    of the image relative to the screen.
-
 
1743
  * Size of the image in bytes is 3*xsize*ysize.
-
 
1744
 
-
 
1745
======================================================================
1710
=================== Function 37 - work with mouse. ===================
1746
=================== Function 37 - work with mouse. ===================
1711
======================================================================
1747
======================================================================
1712
 
1748
 
1713
---------- Subfunction 0 - screen coordinates of the mouse -----------
1749
---------- Subfunction 0 - screen coordinates of the mouse -----------
1714
Parameters:
1750
Parameters:
1715
  * eax = 37 - function number
1751
  * eax = 37 - function number
1716
  * ebx = 0 - subfunction number
1752
  * ebx = 0 - subfunction number
1717
Returned value:
1753
Returned value:
1718
  * eax = x*65536 + y, (x,y)=coordinates of the mouse pointer
1754
  * eax = x*65536 + y, (x,y)=coordinates of the mouse pointer
1719
    (beginning from 0)
1755
    (beginning from 0)
1720
 
1756
 
1721
-- Subfunction 1 - coordinates of the mouse relative to the window ---
1757
-- Subfunction 1 - coordinates of the mouse relative to the window ---
1722
Parameters:
1758
Parameters:
1723
  * eax = 37 - function number
1759
  * eax = 37 - function number
1724
  * ebx = 1 - subfunction number
1760
  * ebx = 1 - subfunction number
1725
Returned value:
1761
Returned value:
1726
  * eax = x*65536 + y, (x,y)=coordinates of the mouse pointer
1762
  * eax = x*65536 + y, (x,y)=coordinates of the mouse pointer
1727
    relative to the application window (beginning from 0)
1763
    relative to the application window (beginning from 0)
1728
Remarks:
1764
Remarks:
1729
  * The value is calculated by formula (x-xwnd)*65536 + (y-ywnd).
1765
  * The value is calculated by formula (x-xwnd)*65536 + (y-ywnd).
1730
    If y>=ywnd, the low word is non-negative and contains
1766
    If y>=ywnd, the low word is non-negative and contains
1731
    relative y-coordinate, and the high word - relative x-coordinate
1767
    relative y-coordinate, and the high word - relative x-coordinate
1732
    (with correct sign). Otherwise the low word is negative and still
1768
    (with correct sign). Otherwise the low word is negative and still
1733
    contains relative y-coordinate, and to the high word
1769
    contains relative y-coordinate, and to the high word
1734
    1 should be added.
1770
    1 should be added.
1735
 
1771
 
1736
------------ Subfunction 2 - pressed buttons of the mouse ------------
1772
------------ Subfunction 2 - pressed buttons of the mouse ------------
1737
Parameters:
1773
Parameters:
1738
  * eax = 37 - function number
1774
  * eax = 37 - function number
1739
  * ebx = 2 - subfunction number
1775
  * ebx = 2 - subfunction number
1740
Returned value:
1776
Returned value:
1741
  * eax contains information on the pressed mouse buttons:
1777
  * eax contains information on the pressed mouse buttons:
1742
  * bit 0 is set = left button is pressed
1778
  * bit 0 is set = left button is pressed
1743
  * bit 1 is set = right button is pressed
1779
  * bit 1 is set = right button is pressed
1744
  * bit 2 is set = middle button is pressed
1780
  * bit 2 is set = middle button is pressed
1745
  * bit 3 is set = 4th button is pressed
1781
  * bit 3 is set = 4th button is pressed
1746
  * bit 4 is set = 5th button is pressed
1782
  * bit 4 is set = 5th button is pressed
1747
  * other bits are cleared
1783
  * other bits are cleared
1748
 
1784
 
1749
-------------------- Subfunction 4 - load cursor ---------------------
1785
-------------------- Subfunction 4 - load cursor ---------------------
1750
Parameters:
1786
Parameters:
1751
  * eax = 37 - function number
1787
  * eax = 37 - function number
1752
  * ebx = 4 - subfunction number
1788
  * ebx = 4 - subfunction number
1753
  * dx = data source:
1789
  * dx = data source:
1754
  * dx = LOAD_FROM_FILE = 0 - data in a file
1790
  * dx = LOAD_FROM_FILE = 0 - data in a file
1755
    * ecx = pointer to full path to the cursor file
1791
    * ecx = pointer to full path to the cursor file
1756
    * the file must be in the format .cur, which is standard for
1792
    * the file must be in the format .cur, which is standard for
1757
      MS Windows, at that of the size 32*32 pixels
1793
      MS Windows, at that of the size 32*32 pixels
1758
  * dx = LOAD_FROM_MEM = 1 - data of file are already loaded in memory
1794
  * dx = LOAD_FROM_MEM = 1 - data of file are already loaded in memory
1759
    * ecx = pointer to data of the cursor file
1795
    * ecx = pointer to data of the cursor file
1760
    * the data format is the same as in the previous case
1796
    * the data format is the same as in the previous case
1761
  * dx = LOAD_INDIRECT = 2 - data in memory
1797
  * dx = LOAD_INDIRECT = 2 - data in memory
1762
    * ecx = pointer to cursor image in the format ARGB 32*32 pixels
1798
    * ecx = pointer to cursor image in the format ARGB 32*32 pixels
1763
    * edx = 0xXXYY0002, where
1799
    * edx = 0xXXYY0002, where
1764
      * XX = x-coordinate of cursor hotspot
1800
      * XX = x-coordinate of cursor hotspot
1765
      * YY = y-coordinate
1801
      * YY = y-coordinate
1766
      * 0 <= XX, YY <= 31
1802
      * 0 <= XX, YY <= 31
1767
Returned value:
1803
Returned value:
1768
  * eax = 0 - failed
1804
  * eax = 0 - failed
1769
  * otherwise eax = cursor handle
1805
  * otherwise eax = cursor handle
1770
 
1806
 
1771
--------------------- Subfunction 5 - set cursor ---------------------
1807
--------------------- Subfunction 5 - set cursor ---------------------
1772
Sets new cursor for the window of the current thread.
1808
Sets new cursor for the window of the current thread.
1773
Parameters:
1809
Parameters:
1774
  * eax = 37 - function number
1810
  * eax = 37 - function number
1775
  * ebx = 5 - subfunction number
1811
  * ebx = 5 - subfunction number
1776
  * ecx = cursor handle
1812
  * ecx = cursor handle
1777
Returned value:
1813
Returned value:
1778
  * eax = handle of previous cursor
1814
  * eax = handle of previous cursor
1779
Remarks:
1815
Remarks:
1780
  * If the handle is incorrect, the function restores the default
1816
  * If the handle is incorrect, the function restores the default
1781
    cursor (standard arrow). In particular, ecx=0 restores it.
1817
    cursor (standard arrow). In particular, ecx=0 restores it.
1782
 
1818
 
1783
------------------- Subfunction 6 - delete cursor --------------------
1819
------------------- Subfunction 6 - delete cursor --------------------
1784
Parameters:
1820
Parameters:
1785
  * eax = 37 - function number
1821
  * eax = 37 - function number
1786
  * ebx = 6 - subfunction number
1822
  * ebx = 6 - subfunction number
1787
  * ecx = cursor handle
1823
  * ecx = cursor handle
1788
Returned value:
1824
Returned value:
1789
  * eax destroyed
1825
  * eax destroyed
1790
Remarks:
1826
Remarks:
1791
  * The cursor must be loaded previously by the current thread
1827
  * The cursor must be loaded previously by the current thread
1792
    (with the call to subfunction 4). The function does not delete
1828
    (with the call to subfunction 4). The function does not delete
1793
    system cursors and cursors, loaded by another applications.
1829
    system cursors and cursors, loaded by another applications.
1794
  * If the active cursor (set by subfunction 5) is deleted,
1830
  * If the active cursor (set by subfunction 5) is deleted,
1795
    the system restores the default cursor (standard arrow).
1831
    the system restores the default cursor (standard arrow).
1796
 
1832
 
1797
------------------ Subfunction 7 - get scroll data -------------------
1833
------------------ Subfunction 7 - get scroll data -------------------
1798
Parameters:
1834
Parameters:
1799
  * eax = 37 - function number
1835
  * eax = 37 - function number
1800
  * ebx = 7 - subfunction number
1836
  * ebx = 7 - subfunction number
1801
Returned value:
1837
Returned value:
1802
  * eax = [horizontal offset]*65536 + [vertical offset]
1838
  * eax = [horizontal offset]*65536 + [vertical offset]
1803
Remarks:
1839
Remarks:
1804
  * Scroll data is available for active window only.
1840
  * Scroll data is available for active window only.
1805
  * Values are zeroed after reading.
1841
  * Values are zeroed after reading.
1806
  * Values are signed.
1842
  * Values are signed.
1807
 
1843
 
1808
======================================================================
1844
======================================================================
1809
====================== Function 38 - draw line. ======================
1845
====================== Function 38 - draw line. ======================
1810
======================================================================
1846
======================================================================
1811
Parameters:
1847
Parameters:
1812
  * eax = 38 - function number
1848
  * eax = 38 - function number
1813
  * ebx = [start coordinate on axis x]*65536 +
1849
  * ebx = [start coordinate on axis x]*65536 +
1814
              [end coordinate on axis x]
1850
              [end coordinate on axis x]
1815
  * ecx = [start coordinate on axis y]*65536 +
1851
  * ecx = [start coordinate on axis y]*65536 +
1816
              [end coordinate on axis y]
1852
              [end coordinate on axis y]
1817
  * edx = 0x00RRGGBB - color
1853
  * edx = 0x00RRGGBB - color
1818
    edx = 0x01xxxxxx - draw inversed line
1854
    edx = 0x01xxxxxx - draw inversed line
1819
          (low 24 bits are ignored)
1855
          (low 24 bits are ignored)
1820
Returned value:
1856
Returned value:
1821
  * function does not return value
1857
  * function does not return value
1822
Remarks:
1858
Remarks:
1823
  * Coordinates are relative to the window.
1859
  * Coordinates are relative to the window.
1824
  * End point is also drawn.
1860
  * End point is also drawn.
1825
 
1861
 
1826
======================================================================
1862
======================================================================
1827
== Function 39, subfunction 1 - get a size of the background image. ==
1863
== Function 39, subfunction 1 - get a size of the background image. ==
1828
======================================================================
1864
======================================================================
1829
Parameters:
1865
Parameters:
1830
  * eax = 39 - function number
1866
  * eax = 39 - function number
1831
  * ebx = 1 - subfunction number
1867
  * ebx = 1 - subfunction number
1832
Returned value:
1868
Returned value:
1833
  * eax = [width]*65536 + [height]
1869
  * eax = [width]*65536 + [height]
1834
Remarks:
1870
Remarks:
1835
  * There is a pair function to set sizes of background image -
1871
  * There is a pair function to set sizes of background image -
1836
    subfunction 1 of function 15. After which it is necessary,
1872
    subfunction 1 of function 15. After which it is necessary,
1837
    of course, anew to define image.
1873
    of course, anew to define image.
1838
 
1874
 
1839
======================================================================
1875
======================================================================
1840
== Function 39, subfunction 2 - get pixel from the background image. =
1876
== Function 39, subfunction 2 - get pixel from the background image. =
1841
======================================================================
1877
======================================================================
1842
Parameters:
1878
Parameters:
1843
  * eax = 39 - function number
1879
  * eax = 39 - function number
1844
  * ebx = 2 - subfunction number
1880
  * ebx = 2 - subfunction number
1845
  * ecx = offset
1881
  * ecx = offset
1846
Returned value:
1882
Returned value:
1847
  * eax = 0x00RRGGBB - pixel color, if offset is valid
1883
  * eax = 0x00RRGGBB - pixel color, if offset is valid
1848
    (less than 0x160000-16)
1884
    (less than 0x160000-16)
1849
  * eax = 2 otherwise
1885
  * eax = 2 otherwise
1850
Remarks:
1886
Remarks:
1851
  * Do not rely on returned value for invalid offsets, it may be
1887
  * Do not rely on returned value for invalid offsets, it may be
1852
    changed in future kernel versions.
1888
    changed in future kernel versions.
1853
  * Offset for pixel with coordinates (x,y)
1889
  * Offset for pixel with coordinates (x,y)
1854
    is calculated as (x+y*xsize)*3.
1890
    is calculated as (x+y*xsize)*3.
1855
  * There is a pair function to set pixel on the background image - 
1891
  * There is a pair function to set pixel on the background image -
1856
    subfunction 2 of function 15.
1892
    subfunction 2 of function 15.
1857
 
1893
 
1858
======================================================================
1894
======================================================================
1859
== Function 39, subfunction 4 - get drawing mode for the background. =
1895
== Function 39, subfunction 4 - get drawing mode for the background. =
1860
======================================================================
1896
======================================================================
1861
Parameters:
1897
Parameters:
1862
  * eax = 39 - function number
1898
  * eax = 39 - function number
1863
  * ebx = 4 - subfunction number
1899
  * ebx = 4 - subfunction number
1864
Returned value:
1900
Returned value:
1865
  * eax = 1 - tile
1901
  * eax = 1 - tile
1866
  * eax = 2 - stretch
1902
  * eax = 2 - stretch
1867
Remarks:
1903
Remarks:
1868
  * There is a pair function to set drawing mode - 
1904
  * There is a pair function to set drawing mode -
1869
    subfunction 4 of function 15.
1905
    subfunction 4 of function 15.
1870
 
1906
 
1871
======================================================================
1907
======================================================================
1872
=========== Function 40 - set the mask for expected events. ==========
1908
=========== Function 40 - set the mask for expected events. ==========
1873
======================================================================
1909
======================================================================
1874
The mask for expected events affects function working with events
1910
The mask for expected events affects function working with events
1875
10, 11, 23 - they notify only about events allowed by this mask.
1911
10, 11, 23 - they notify only about events allowed by this mask.
1876
Parameters:
1912
Parameters:
1877
  * eax = 40 - function number
1913
  * eax = 40 - function number
1878
  * ebx = mask: bit i corresponds to event i+1 (see list of events)
1914
  * ebx = mask: bit i corresponds to event i+1 (see list of events)
1879
    (set bit permits notice on event)
1915
    (set bit permits notice on event)
1880
Returned value:
1916
Returned value:
1881
  * function does not return value
1917
  * function does not return value
1882
Remarks:
1918
Remarks:
1883
  * Default mask (7=111b) enables nofices about redraw,
1919
  * Default mask (7=111b) enables nofices about redraw,
1884
    keys and buttons. This is enough for many applications.
1920
    keys and buttons. This is enough for many applications.
1885
  * Events prohibited in the mask are saved anyway, when come;
1921
  * Events prohibited in the mask are saved anyway, when come;
1886
    they are simply not informed with event functions.
1922
    they are simply not informed with event functions.
1887
  * Event functions take into account the mask on moment of
1923
  * Event functions take into account the mask on moment of
1888
    function call, not on moment of event arrival.
1924
    function call, not on moment of event arrival.
1889
 
1925
 
1890
======================================================================
1926
======================================================================
1891
==================== Function 41 - get IRQ owner. ====================
1927
==================== Function 41 - get IRQ owner. ====================
1892
======================================================================
1928
======================================================================
1893
Parameters:
1929
Parameters:
1894
  * eax = 41 - function number
1930
  * eax = 41 - function number
1895
  * ebx = IRQ number, 0..15
1931
  * ebx = IRQ number, 0..15
1896
Returned value:
1932
Returned value:
1897
  * eax = owner PID
1933
  * eax = owner PID
1898
  * eax = 0, if there is no owner
1934
  * eax = 0, if there is no owner
1899
  * eax = -1 for incorrect ebx
1935
  * eax = -1 for incorrect ebx
1900
 
1936
 
1901
======================================================================
1937
======================================================================
1902
==================== Function 42 - work with IRQ data. ===============
1938
================== Function 42 - work with IRQ data. =================
1903
======================================================================
1939
======================================================================
1904
 
-
 
1905
------------------------ Reading data --------------------------------
-
 
1906
 
-
 
1907
When an IRQ occurs, the system reads data from ports indicated
1940
When an IRQ occurs, the system reads data from ports indicated
1908
earlier by function 44 and writes this data to
1941
earlier by function 44 and writes this data to
1909
internal buffer. This function reads out data from that buffer
1942
internal buffer. This function reads out data from that buffer.
-
 
1943
 
1910
to the buffer specified as parameter.
1944
--------------------- Subfunction 0 - read data ----------------------
1911
Parameters:
1945
Parameters:
1912
  * eax = 42 - function number
1946
  * eax = 42 - function number
1913
  * bl = IRQ number, 0..15
1947
  * bl = IRQ number, 0..15
1914
  * bh = subfunction number, 0
1948
  * bh = 0 - subfunction number
1915
Other part of register ebx, must be zero.
1949
  * rest of ebx must be zeroed
1916
  * ecx = pointer to the receive buffer
1950
  * ecx = pointer to a buffer with size not less than 4000 bytes
1917
Returned value: (use value of eax to distinguish)
1951
Returned value: (use value of eax to distinguish)
1918
  * if the thread is not IRQ owner (or IRQ number is incorrect):
1952
  * if the thread is not IRQ owner
1919
    * eax = -1
1953
    (or IRQ number is incorrect): eax = -1
1920
  * if there is no data:
1954
  * if there is no data: eax = 0
1921
    * eax = 0
-
 
1922
  * if all is ok:
1955
  * if all is ok:
1923
    * eax = byte size of data, read from buffer
1956
    eax = size of data read (in bytes)
1924
 
-
 
1925
See remarks below.
-
 
1926
 
-
 
1927
------------------------ Get data size -------------------------------
-
 
-
 
1957
 
1928
 
1958
------------- Subfunction 1 - get size of data in buffer -------------
1929
Parameters:
1959
Parameters:
1930
  * eax = 42 - function number
1960
  * eax = 42 - function number
1931
  * bl = IRQ number, 0..15
1961
  * bl = IRQ number, 0..15
1932
  * bh = subfunction number, 0
1962
  * bh = 0 - subfunction number
1933
Other part of register ebx, must be zero.
1963
  * rest of ebx must be zeroed
1934
  * ecx = pointer to receive buffer
-
 
1935
Returned value: (use value of eax to distinguish)
1964
Returned value:
1936
  * if the thread is not IRQ owner (or IRQ number is incorrect):
1965
  * if the thread is not IRQ owner
1937
    * eax = -1
1966
    (or IRQ number is incorrect): eax = -1
1938
  * if all is ok:
-
 
1939
    * eax = byte size of data in buffer
1967
  * otherwise eax = size of data in buffer
1940
 
-
 
1941
Remarks:
1968
Remarks:
1942
  * Previously the thread must reserve indicated IRQ for itself
1969
  * Previously the thread must reserve indicated IRQ for itself
1943
    by function 45.
1970
    by function 45.
1944
  * The size of data buffer is 4000 bytes, on overflow
1971
  * The size of data buffer is 4000 bytes, on overflow
1945
    "fresh" data cease to be written in the buffer.
1972
    "fresh" data cease to be written in the buffer.
1946
 
1973
 
1947
======================================================================
1974
======================================================================
1948
================ Function 43 - input/output to a port. ===============
1975
================ Function 43 - input/output to a port. ===============
1949
======================================================================
1976
======================================================================
1950
 
1977
 
1951
------------------------ Output data to port -------------------------
1978
------------------------ Output data to port -------------------------
1952
Parameters:
1979
Parameters:
1953
  * eax = 43 - function number
1980
  * eax = 43 - function number
1954
  * bl = byte for output
1981
  * bl = byte for output
1955
  * ecx = port number 0xnnnn (from 0 to 0xFFFF)
1982
  * ecx = port number 0xnnnn (from 0 to 0xFFFF)
1956
Returned value:
1983
Returned value:
1957
  * eax = 0 - success
1984
  * eax = 0 - success
1958
  * eax = 1 - the thread has not reserved the selected port
1985
  * eax = 1 - the thread has not reserved the selected port
1959
 
1986
 
1960
------------------------ Input data from port ------------------------
1987
------------------------ Input data from port ------------------------
1961
Parameters:
1988
Parameters:
1962
  * eax = 43 - function number
1989
  * eax = 43 - function number
1963
  * ebx is ignored
1990
  * ebx is ignored
1964
  * ecx = 0x8000nnnn, where nnnn = port number (from 0 to 0xFFFF)
1991
  * ecx = 0x8000nnnn, where nnnn = port number (from 0 to 0xFFFF)
1965
Returned value:
1992
Returned value:
1966
  * eax = 0 - success, thus ebx = entered byte
1993
  * eax = 0 - success, thus ebx = entered byte
1967
  * eax = 1 - the thread has not reserved the selected port
1994
  * eax = 1 - the thread has not reserved the selected port
1968
Remarks:
1995
Remarks:
1969
  * Previously the thread must reserve the selected port
1996
  * Previously the thread must reserve the selected port
1970
    for itself by function 46.
1997
    for itself by function 46.
1971
  * Instead of call to this function it is better to use
1998
  * Instead of call to this function it is better to use
1972
    processor instructions in/out - this is much
1999
    processor instructions in/out - this is much
1973
    faster and a bit shorter and easier.
2000
    faster and a bit shorter and easier.
1974
 
2001
 
1975
======================================================================
2002
======================================================================
1976
=========== Function 44 - define operations at IRQ arrival. ==========
2003
=========== Function 44 - define operations at IRQ arrival. ==========
1977
======================================================================
2004
======================================================================
1978
At IRQ arrival the system can read the data from ports defined
2005
At IRQ arrival the system can read the data from ports defined
1979
by this function and write these data to internal buffer, whence
2006
by this function and write these data to internal buffer, whence
1980
they can be read by ôóíêöèåé 42.
2007
they can be read by ôóíêöèåé 42.
1981
Parameters:
2008
Parameters:
1982
  * eax = 44 - function number
2009
  * eax = 44 - function number
1983
  * ebx = pointer to the array of structures each describing one port:
2010
  * ebx = pointer to the array of structures each describing one port:
1984
    * +0: word: 0 means end of array, otherwise port number
2011
    * +0: word: 0 means end of array, otherwise port number
1985
    * +2: byte: reserved (ignored)
2012
    * +2: byte: reserved (ignored)
1986
    * +3: byte: 1=read byte from this port, 2=read word
2013
    * +3: byte: 1=read byte from this port, 2=read word
1987
  * ecx = IRQ number, 0..15
2014
  * ecx = IRQ number, 0..15
1988
Returned value:
2015
Returned value:
1989
  * eax = 0 - success
2016
  * eax = 0 - success
1990
  * eax = 1 - the thread is not owner of selected IRQ
2017
  * eax = 1 - the thread is not owner of selected IRQ
1991
Remarks:
2018
Remarks:
1992
  * Previously the thread must reserve for itself selected IRQ
2019
  * Previously the thread must reserve for itself selected IRQ
1993
    by function 45.
2020
    by function 45.
1994
  * First 16 ports are considered only.
2021
  * First 16 ports are considered only.
1995
  * The current implementation considers incorrect value of field +3
2022
  * The current implementation considers incorrect value of field +3
1996
    as a signal to terminate IRQ processing.
2023
    as a signal to terminate IRQ processing.
1997
 
2024
 
1998
======================================================================
2025
======================================================================
1999
=================== Function 45 - reserve/free IRQ. ==================
2026
=================== Function 45 - reserve/free IRQ. ==================
2000
======================================================================
2027
======================================================================
2001
Parameters:
2028
Parameters:
2002
  * eax = 45 - function number
2029
  * eax = 45 - function number
2003
  * ebx = 0 - reserve, 1 = free
2030
  * ebx = 0 - reserve, 1 = free
2004
  * ecx = IRQ number, 0..15
2031
  * ecx = IRQ number, 0..15
2005
Returned value:
2032
Returned value:
2006
  * eax = 0 - success
2033
  * eax = 0 - success
2007
  * eax = 1 - error (invalid IRQ number
2034
  * eax = 1 - error (invalid IRQ number
2008
    or attempt to reserve not free IRQ
2035
    or attempt to reserve not free IRQ
2009
    or to free IRQ, not reserved by this thread)
2036
    or to free IRQ, not reserved by this thread)
2010
Remarks:
2037
Remarks:
2011
  * IRQ reservation is required for functions 42 and 44.
2038
  * IRQ reservation is required for functions 42 and 44.
2012
  * Only one thread can reserve the specific IRQ.
2039
  * Only one thread can reserve the specific IRQ.
2013
  * IRQs, handled by the system itself, are reserved by the system
2040
  * IRQs, handled by the system itself, are reserved by the system
2014
    (thread 1) at booting.
2041
    (thread 1) at booting.
2015
  * When a thread terminates, all reserved by it IRQs
2042
  * When a thread terminates, all reserved by it IRQs
2016
    are freed automatically.
2043
    are freed automatically.
2017
 
2044
 
2018
======================================================================
2045
======================================================================
2019
====== Function 46 - reserve/free a group of input/output ports. =====
2046
====== Function 46 - reserve/free a group of input/output ports. =====
2020
======================================================================
2047
======================================================================
2021
To work with reserved ports an application can access directly by
2048
To work with reserved ports an application can access directly by
2022
commands in/out (recommended way) and can use function 43
2049
commands in/out (recommended way) and can use function 43
2023
(not recommended way).
2050
(not recommended way).
2024
Parameters:
2051
Parameters:
2025
  * eax = 46 - function number
2052
  * eax = 46 - function number
2026
  * ebx = 0 - reserve, 1 - free
2053
  * ebx = 0 - reserve, 1 - free
2027
  * ecx = start port number
2054
  * ecx = start port number
2028
  * edx = end port number (inclusive)
2055
  * edx = end port number (inclusive)
2029
Returned value:
2056
Returned value:
2030
  * eax = 0 - success
2057
  * eax = 0 - success
2031
  * eax = 1 - error
2058
  * eax = 1 - error
2032
Remarks:
2059
Remarks:
2033
  * For ports reservation: an error occurs if and only if
2060
  * For ports reservation: an error occurs if and only if
2034
    one from the following condition satisfies:
2061
    one from the following condition satisfies:
2035
    * start port is more than end port;
2062
    * start port is more than end port;
2036
    * the selected range contains incorrect port number
2063
    * the selected range contains incorrect port number
2037
      (correct are from 0 to 0xFFFF);
2064
      (correct are from 0 to 0xFFFF);
2038
    * limit for the total number of reserved areas is exceeded
2065
    * limit for the total number of reserved areas is exceeded
2039
      (maximum 255 are allowed);
2066
      (maximum 255 are allowed);
2040
    * the selected range intersects with any of earlier reserved
2067
    * the selected range intersects with any of earlier reserved
2041
  * For ports free: an error is an attempt to free range,
2068
  * For ports free: an error is an attempt to free range,
2042
    that was not earlier reserved by this function
2069
    that was not earlier reserved by this function
2043
    (with same ecx,edx).
2070
    (with same ecx,edx).
2044
  * If an error occurs (for both cases) function performs no action.
2071
  * If an error occurs (for both cases) function performs no action.
2045
  * At booting the system reserves for itself ports
2072
  * At booting the system reserves for itself ports
2046
    0..0x2d, 0x30..0x4d, 0x50..0xdf, 0xe5..0xff (inclusively).
2073
    0..0x2d, 0x30..0x4d, 0x50..0xdf, 0xe5..0xff (inclusively).
2047
  * When a thread terminates, all reserved by it ports
2074
  * When a thread terminates, all reserved by it ports
2048
    are freed automatically.
2075
    are freed automatically.
2049
 
2076
 
2050
======================================================================
2077
======================================================================
2051
============= Function 47 - draw a number in the window. =============
2078
============= Function 47 - draw a number in the window. =============
2052
======================================================================
2079
======================================================================
2053
Parameters:
2080
Parameters:
2054
  * eax = 47 - function number
2081
  * eax = 47 - function number
2055
  * ebx = parameters of conversion number to text:
2082
  * ebx = parameters of conversion number to text:
2056
    * bl = 0 - ecx contains number
2083
    * bl = 0 - ecx contains number
2057
    * bl = 1 - ecx contains pointer to dword/qword-number
2084
    * bl = 1 - ecx contains pointer to dword/qword-number
2058
    * bh = 0 - display in decimal number system
2085
    * bh = 0 - display in decimal number system
2059
    * bh = 1 - display in hexadecimal system
2086
    * bh = 1 - display in hexadecimal system
2060
    * bh = 2 - display in binary system
2087
    * bh = 2 - display in binary system
2061
    * bits 16-21 = how many digits to display
2088
    * bits 16-21 = how many digits to display
2062
    * bits 22-29 reserved and must be set to 0
2089
    * bits 22-29 reserved and must be set to 0
2063
    * bit 30 set = display qword (64-bit) number (must be bl=1)
2090
    * bit 30 set = display qword (64-bit) number (must be bl=1)
2064
    * bit 31 set = do not display leading zeroes of the number
2091
    * bit 31 set = do not display leading zeroes of the number
2065
  * ecx = number (if bl=0) or pointer (if bl=1)
2092
  * ecx = number (if bl=0) or pointer (if bl=1)
2066
  * edx = [coordinate on axis x]*65536 + [coordinate on axis y]
2093
  * edx = [coordinate on axis x]*65536 + [coordinate on axis y]
2067
  * esi = 0xX0RRGGBB:
2094
  * esi = 0xX0RRGGBB:
2068
    * RR, GG, BB specify the color
2095
    * RR, GG, BB specify the color
2069
    * X = ABnn (bits)
2096
    * X = ABnn (bits)
2070
    * nn = font (0/1)
2097
    * nn = font (0/1)
2071
    * A is ignored
2098
    * A is ignored
2072
    * B=1 - fill background with the color edi
2099
    * B=1 - fill background with the color edi
2073
Returned value:
2100
Returned value:
2074
  * function does not return value
2101
  * function does not return value
2075
Remarks:
2102
Remarks:
2076
  * The given length must not exceed 60.
2103
  * The given length must not exceed 60.
2077
  * The exactly given amount of digits is output. If number is small
2104
  * The exactly given amount of digits is output. If number is small
2078
    and can be written by smaller amount of digits, it is supplemented
2105
    and can be written by smaller amount of digits, it is supplemented
2079
    by leading zeroes; if the number is big and can not be written by
2106
    by leading zeroes; if the number is big and can not be written by
2080
    given amount of digits, extra digits are not drawn.
2107
    given amount of digits, extra digits are not drawn.
2081
  * Parameters of fonts are shown in the description of function 4
2108
  * Parameters of fonts are shown in the description of function 4
2082
    (text output).
2109
    (text output).
2083
 
2110
 
2084
======================================================================
2111
======================================================================
2085
========= Function 48, subfunction 0 - apply screen settings. ========
2112
========= Function 48, subfunction 0 - apply screen settings. ========
2086
======================================================================
2113
======================================================================
2087
Parameters:
2114
Parameters:
2088
  * eax = 48 - function number
2115
  * eax = 48 - function number
2089
  * ebx = 0 - subfunction number
2116
  * ebx = 0 - subfunction number
2090
  * ecx = 0 - reserved
2117
  * ecx = 0 - reserved
2091
Returned value:
2118
Returned value:
2092
  * function does not return value
2119
  * function does not return value
2093
Remarks:
2120
Remarks:
2094
  * Function redraws the screen after parameters change by
2121
  * Function redraws the screen after parameters change by
2095
    subfunctions 1 and 2.
2122
    subfunctions 1 and 2.
2096
  * Function call without prior call to one of indicated subfunctions
2123
  * Function call without prior call to one of indicated subfunctions
2097
    is ignored.
2124
    is ignored.
2098
  * Function call with nonzero ecx is ignored.
2125
  * Function call with nonzero ecx is ignored.
2099
 
2126
 
2100
======================================================================
2127
======================================================================
2101
=========== Function 48, subfunction 1 - set button style. ===========
2128
=========== Function 48, subfunction 1 - set button style. ===========
2102
======================================================================
2129
======================================================================
2103
Parameters:
2130
Parameters:
2104
  * eax = 48 - function number
2131
  * eax = 48 - function number
2105
  * ebx = 1 - subfunction number
2132
  * ebx = 1 - subfunction number
2106
  * ecx = button style:
2133
  * ecx = button style:
2107
    * 0 = flat
2134
    * 0 = flat
2108
    * 1 = 3d
2135
    * 1 = 3d
2109
Returned value:
2136
Returned value:
2110
  * function does not return value
2137
  * function does not return value
2111
Remarks:
2138
Remarks:
2112
  * After call to this function one should redraw the screen by
2139
  * After call to this function one should redraw the screen by
2113
    subfunction 0.
2140
    subfunction 0.
2114
  * Button style influences only to their draw of function 8.
2141
  * Button style influences only to their draw of function 8.
2115
 
2142
 
2116
======================================================================
2143
======================================================================
2117
====== Function 48, subfunction 2 - set standard window colors. ======
2144
====== Function 48, subfunction 2 - set standard window colors. ======
2118
======================================================================
2145
======================================================================
2119
Parameters:
2146
Parameters:
2120
  * eax = 48 - function number
2147
  * eax = 48 - function number
2121
  * ebx = 2 - subfunction number
2148
  * ebx = 2 - subfunction number
2122
  * ecx = pointer to the color table
2149
  * ecx = pointer to the color table
2123
  * edx = size of the color table
2150
  * edx = size of the color table
2124
    (must be 40 bytes for future compatibility)
2151
    (must be 40 bytes for future compatibility)
2125
Format of the color table is shown in description of subfunction 3.
2152
Format of the color table is shown in description of subfunction 3.
2126
Returned value:
2153
Returned value:
2127
  * function does not return value
2154
  * function does not return value
2128
Remarks:
2155
Remarks:
2129
  * After call to this function one should redraw the screen by
2156
  * After call to this function one should redraw the screen by
2130
    subfunction 0.
2157
    subfunction 0.
2131
  * Table of standard colors influences only to applications,
2158
  * Table of standard colors influences only to applications,
2132
    which receive this table obviously (by subfunction 3)
2159
    which receive this table obviously (by subfunction 3)
2133
    and use it (specifying colors from it to drawing functions).
2160
    and use it (specifying colors from it to drawing functions).
2134
  * Table of standard colors is included in skin and is installed
2161
  * Table of standard colors is included in skin and is installed
2135
    anew with skin installation (by subfunction 8).
2162
    anew with skin installation (by subfunction 8).
2136
  * Color table can be viewed/changed interactively with
2163
  * Color table can be viewed/changed interactively with
2137
    the application 'desktop'.
2164
    the application 'desktop'.
2138
 
2165
 
2139
======================================================================
2166
======================================================================
2140
====== Function 48, subfunction 3 - get standard window colors. ======
2167
====== Function 48, subfunction 3 - get standard window colors. ======
2141
======================================================================
2168
======================================================================
2142
Parameters:
2169
Parameters:
2143
  * eax = 48 - function number
2170
  * eax = 48 - function number
2144
  * ebx = 3 - subfunction number
2171
  * ebx = 3 - subfunction number
2145
  * ecx = pointer to the buffer with size edx bytes,
2172
  * ecx = pointer to the buffer with size edx bytes,
2146
    where table will be written
2173
    where table will be written
2147
  * edx = size of color table
2174
  * edx = size of color table
2148
    (must be 40 bytes for future compatibility)
2175
    (must be 40 bytes for future compatibility)
2149
Returned value:
2176
Returned value:
2150
  * function does not return value
2177
  * function does not return value
2151
Format of the color table:
2178
Format of the color table:
2152
each item is dword-value for color 0x00RRGGBB
2179
each item is dword-value for color 0x00RRGGBB
2153
  * +0: dword: frames - color of frame
2180
  * +0: dword: frames - color of frame
2154
  * +4: dword: grab - color of header
2181
  * +4: dword: grab - color of header
2155
  * +8: dword: grab_button - color of button on header bar
2182
  * +8: dword: grab_button - color of button on header bar
2156
  * +12 = +0xC: dword: grab_button_text - color of text on button
2183
  * +12 = +0xC: dword: grab_button_text - color of text on button
2157
    on header bar
2184
    on header bar
2158
  * +16 = +0x10: dword: grab_text - color of text on header
2185
  * +16 = +0x10: dword: grab_text - color of text on header
2159
  * +20 = +0x14: dword: work - color of working area
2186
  * +20 = +0x14: dword: work - color of working area
2160
  * +24 = +0x18: dword: work_button - color of button in working area
2187
  * +24 = +0x18: dword: work_button - color of button in working area
2161
  * +28 = +0x1C: dword: work_button_text - color of text on button
2188
  * +28 = +0x1C: dword: work_button_text - color of text on button
2162
    in working area
2189
    in working area
2163
  * +32 = +0x20: dword: work_text - color of text in working area
2190
  * +32 = +0x20: dword: work_text - color of text in working area
2164
  * +36 = +0x24: dword: work_graph - color of graphics in working area
2191
  * +36 = +0x24: dword: work_graph - color of graphics in working area
2165
Remarks:
2192
Remarks:
2166
  * Structure of the color table is described in the standard
2193
  * Structure of the color table is described in the standard
2167
    include file 'macros.inc' as 'system_colors'; for example,
2194
    include file 'macros.inc' as 'system_colors'; for example,
2168
    it is possible to write:
2195
    it is possible to write:
2169
    	sc	system_colors		; variable declaration
2196
        sc      system_colors           ; variable declaration
2170
    	...				; somewhere one must call
2197
        ...                             ; somewhere one must call
2171
    					; this function with ecx=sc
2198
                                        ; this function with ecx=sc
2172
    	mov	ecx, [sc.work_button_text]	; read text color on
2199
        mov     ecx, [sc.work_button_text]      ; read text color on
2173
    					; buttin in working area
2200
                                        ; buttin in working area
2174
  * A program itself desides to use or not to use color table.
2201
  * A program itself desides to use or not to use color table.
2175
    For usage program must simply at calls to drawing functions select
2202
    For usage program must simply at calls to drawing functions select
2176
    color taken from the table.
2203
    color taken from the table.
2177
  * At change of the table of standard colors (by subfunction 2 with
2204
  * At change of the table of standard colors (by subfunction 2 with
2178
    the subsequent application of changes by subfunction 0 or
2205
    the subsequent application of changes by subfunction 0 or
2179
    at skin set by subfunction 8) the system sends to all windows
2206
    at skin set by subfunction 8) the system sends to all windows
2180
    redraw message (the event with code 1).
2207
    redraw message (the event with code 1).
2181
  * Color table can be viewed/changed interactively with
2208
  * Color table can be viewed/changed interactively with
2182
    the application 'desktop'.
2209
    the application 'desktop'.
2183
 
2210
 
2184
======================================================================
2211
======================================================================
2185
============ Function 48, subfunction 4 - get skin height. ===========
2212
============ Function 48, subfunction 4 - get skin height. ===========
2186
======================================================================
2213
======================================================================
2187
Parameters:
2214
Parameters:
2188
  * eax = 48 - function number
2215
  * eax = 48 - function number
2189
  * ebx = 4 - subfunction number
2216
  * ebx = 4 - subfunction number
2190
Returned value:
2217
Returned value:
2191
  * eax = skin height
2218
  * eax = skin height
2192
Remarks:
2219
Remarks:
2193
  * Skin height is defined as the height of a header
2220
  * Skin height is defined as the height of a header
2194
    of skinned windows.
2221
    of skinned windows.
2195
  * See also general structure of window in the description
2222
  * See also general structure of window in the description
2196
    of function 0.
2223
    of function 0.
2197
 
2224
 
2198
======================================================================
2225
======================================================================
2199
======== Function 48, subfunction 5 - get screen working area. =======
2226
======== Function 48, subfunction 5 - get screen working area. =======
2200
======================================================================
2227
======================================================================
2201
Parameters:
2228
Parameters:
2202
  * eax = 48 - function number
2229
  * eax = 48 - function number
2203
  * ebx = 5 - subfunction number
2230
  * ebx = 5 - subfunction number
2204
Returned value:
2231
Returned value:
2205
  * eax = [left]*65536 + [right]
2232
  * eax = [left]*65536 + [right]
2206
  * ebx = [top]*65536 + [bottom]
2233
  * ebx = [top]*65536 + [bottom]
2207
Remarks:
2234
Remarks:
2208
  * The screen working area defines position and coordinates of
2235
  * The screen working area defines position and coordinates of
2209
    a maximized window.
2236
    a maximized window.
2210
  * The screen working area in view of normal work is all screen
2237
  * The screen working area in view of normal work is all screen
2211
    without system panel (the application '@panel').
2238
    without system panel (the application '@panel').
2212
  * (left,top) are coordinates of the left upper corner,
2239
  * (left,top) are coordinates of the left upper corner,
2213
    (right,bottom) are coordinates of the right lower one.
2240
    (right,bottom) are coordinates of the right lower one.
2214
    Thus the size of working area on x axis can be calculated by
2241
    Thus the size of working area on x axis can be calculated by
2215
    formula right-left+1, on y axis - by formula bottom-right+1.
2242
    formula right-left+1, on y axis - by formula bottom-right+1.
2216
  * See also function 14,
2243
  * See also function 14,
2217
    to get sizes of all screen.
2244
    to get sizes of all screen.
2218
  * There is a pair function to set working area - subfunction 6.
2245
  * There is a pair function to set working area - subfunction 6.
2219
 
2246
 
2220
======================================================================
2247
======================================================================
2221
======== Function 48, subfunction 6 - set screen working area. =======
2248
======== Function 48, subfunction 6 - set screen working area. =======
2222
======================================================================
2249
======================================================================
2223
Parameters:
2250
Parameters:
2224
  * eax = 48 - function number
2251
  * eax = 48 - function number
2225
  * ebx = 6 - subfunction number
2252
  * ebx = 6 - subfunction number
2226
  * ecx = [left]*65536 + [right]
2253
  * ecx = [left]*65536 + [right]
2227
  * edx = [top]*65536 + [bottom]
2254
  * edx = [top]*65536 + [bottom]
2228
Returned value:
2255
Returned value:
2229
  * function does not return value
2256
  * function does not return value
2230
Remarks:
2257
Remarks:
2231
  * The screen working area defines position and coordinates of
2258
  * The screen working area defines position and coordinates of
2232
    a maximized window.
2259
    a maximized window.
2233
  * This function is used only by the application '@panel',
2260
  * This function is used only by the application '@panel',
2234
    which set working area to all screen without system panel.
2261
    which set working area to all screen without system panel.
2235
  * (left,top) are coordinates of the left upper corner,
2262
  * (left,top) are coordinates of the left upper corner,
2236
    (right,bottom) are coordinates of the right lower one.
2263
    (right,bottom) are coordinates of the right lower one.
2237
    Thus the size of working area on x axis can be calculated by
2264
    Thus the size of working area on x axis can be calculated by
2238
    formula right-left+1, on y axis - by formula bottom-right+1.
2265
    formula right-left+1, on y axis - by formula bottom-right+1.
2239
  * If 'left'>='right', x-coordinate of working area is not changed.
2266
  * If 'left'>='right', x-coordinate of working area is not changed.
2240
    If 'left'<0, 'left' will not be set. If 'right' is greater than or
2267
    If 'left'<0, 'left' will not be set. If 'right' is greater than or
2241
    equal to screen width, 'right' will not be set.
2268
    equal to screen width, 'right' will not be set.
2242
    Similarly on y axis.
2269
    Similarly on y axis.
2243
  * See also function 14,
2270
  * See also function 14,
2244
    to get sizes of all screen.
2271
    to get sizes of all screen.
2245
  * There is a pair function to get working area - subfunction 5.
2272
  * There is a pair function to get working area - subfunction 5.
2246
  * This function redraws the screen automatically,
2273
  * This function redraws the screen automatically,
2247
    updating coordinates and sizes of maximized windows.
2274
    updating coordinates and sizes of maximized windows.
2248
    The system sends to all windows redraw message (the event 1).
2275
    The system sends to all windows redraw message (the event 1).
2249
 
2276
 
2250
======================================================================
2277
======================================================================
2251
=========== Function 48, subfunction 7 - get skin margins. ===========
2278
=========== Function 48, subfunction 7 - get skin margins. ===========
2252
======================================================================
2279
======================================================================
2253
Returns the area of a header of a skinned window, intended for
2280
Returns the area of a header of a skinned window, intended for
2254
a text of a header.
2281
a text of a header.
2255
Parameters:
2282
Parameters:
2256
  * eax = 48 - function number
2283
  * eax = 48 - function number
2257
  * ebx = 7 - subfunction number
2284
  * ebx = 7 - subfunction number
2258
Returned value:
2285
Returned value:
2259
  * eax = [left]*65536 + [right]
2286
  * eax = [left]*65536 + [right]
2260
  * ebx = [top]*65536 + [bottom]
2287
  * ebx = [top]*65536 + [bottom]
2261
Remarks:
2288
Remarks:
2262
  * An application decides itself to use or not to use this function.
2289
  * An application decides itself to use or not to use this function.
2263
  * It is recommended to take into account returned value
2290
  * It is recommended to take into account returned value
2264
    of this function for choice of a place for drawing header text
2291
    of this function for choice of a place for drawing header text
2265
    (by function 4) or a substitute of header text
2292
    (by function 4) or a substitute of header text
2266
    (at the discretion of an application).
2293
    (at the discretion of an application).
2267
 
2294
 
2268
======================================================================
2295
======================================================================
2269
============= Function 48, subfunction 8 - set used skin. ============
2296
============= Function 48, subfunction 8 - set used skin. ============
2270
======================================================================
2297
======================================================================
2271
Parameters:
2298
Parameters:
2272
  * eax = 48 - function number
2299
  * eax = 48 - function number
2273
  * ebx = 8 - subfunction number
2300
  * ebx = 8 - subfunction number
2274
  * ecx = pointer to a block for function 58, in
2301
  * ecx = pointer to a block for function 58, in
2275
    which the fields of intermediate buffer and file name are filled
2302
    which the fields of intermediate buffer and file name are filled
2276
Returned value:
2303
Returned value:
2277
  * eax = 0 - success
2304
  * eax = 0 - success
2278
  * otherwise eax = file system error code; if file does not
2305
  * otherwise eax = file system error code; if file does not
2279
    contain valid skin, function returns error 3
2306
    contain valid skin, function returns error 3
2280
    (unknown file system).
2307
    (unknown file system).
2281
Remarks:
2308
Remarks:
2282
  * After successful skin loading the system sends to all windows
2309
  * After successful skin loading the system sends to all windows
2283
    redraw message (the event 1).
2310
    redraw message (the event 1).
2284
  * At booting the system reads skin from file 'default.skn'
2311
  * At booting the system reads skin from file 'default.skn'
2285
    on ramdisk.
2312
    on ramdisk.
2286
  * User can change the skin statically by creating hisself
2313
  * User can change the skin statically by creating hisself
2287
    'default.skn' or dynamically with the application 'desktop'.
2314
    'default.skn' or dynamically with the application 'desktop'.
2288
 
2315
 
2289
======================================================================
2316
======================================================================
2290
=========== Function 49 - Advanced Power Management (APM). ===========
2317
=========== Function 49 - Advanced Power Management (APM). ===========
2291
======================================================================
2318
======================================================================
2292
Parameters:
2319
Parameters:
2293
  * eax = 49 - function number
2320
  * eax = 49 - function number
2294
  * dx = number of the APM function
2321
  * dx = number of the APM function
2295
    (analogue of ax in APM specification)
2322
    (analogue of ax in APM specification)
2296
  * bx, cx = parameters of the APM function
2323
  * bx, cx = parameters of the APM function
2297
Returned value:
2324
Returned value:
2298
  * 16-bit registers ax, bx, cx, dx, si, di and carry flag CF
2325
  * 16-bit registers ax, bx, cx, dx, si, di and carry flag CF
2299
    are set according to the APM specification
2326
    are set according to the APM specification
2300
  * high halves of 32-bit registers eax, ebx, ecx,
2327
  * high halves of 32-bit registers eax, ebx, ecx,
2301
    edx, esi, edi are destroyed
2328
    edx, esi, edi are destroyed
2302
Remarks:
2329
Remarks:
2303
  * APM 1.2 specification is described in the document
2330
  * APM 1.2 specification is described in the document
2304
    "Advanced Power Management (APM) BIOS Specification"
2331
    "Advanced Power Management (APM) BIOS Specification"
2305
    (Revision 1.2), available at
2332
    (Revision 1.2), available at
2306
    http://www.microsoft.com/whdc/archive/amp_12.mspx;
2333
    http://www.microsoft.com/whdc/archive/amp_12.mspx;
2307
    besides it is included in famous Interrupt List by Ralf Brown
2334
    besides it is included in famous Interrupt List by Ralf Brown
2308
    (http://www.pobox.com/~ralf/files.html,
2335
    (http://www.pobox.com/~ralf/files.html,
2309
    ftp://ftp.cs.cmu.edu/afs/cs/user/ralf/pub/).
2336
    ftp://ftp.cs.cmu.edu/afs/cs/user/ralf/pub/).
2310
 
2337
 
2311
======================================================================
2338
======================================================================
2312
=================== Function 50 - set window shape. ==================
2339
=================== Function 50 - set window shape. ==================
2313
======================================================================
2340
======================================================================
2314
Normal windows have rectangular shape. This function can give to
2341
Normal windows have rectangular shape. This function can give to
2315
a window any shape. The shape is given by a set of points inside
2342
a window any shape. The shape is given by a set of points inside
2316
the base rectangle belonging to a window. Position and coordinates
2343
the base rectangle belonging to a window. Position and coordinates
2317
of the base rectangle are set by function 0
2344
of the base rectangle are set by function 0
2318
and changed by function 67.
2345
and changed by function 67.
2319
 
2346
 
2320
--------------------------- Set shape data ---------------------------
2347
--------------------------- Set shape data ---------------------------
2321
Parameters:
2348
Parameters:
2322
  * eax = 50 - function number
2349
  * eax = 50 - function number
2323
  * ebx = 0 - subfunction number
2350
  * ebx = 0 - subfunction number
2324
  * ecx = pointer to shape data (array of bytes 0/1)
2351
  * ecx = pointer to shape data (array of bytes 0/1)
2325
Returned value:
2352
Returned value:
2326
  * function does not return value
2353
  * function does not return value
2327
 
2354
 
2328
-------------------------- Set shape scale ---------------------------
2355
-------------------------- Set shape scale ---------------------------
2329
Parameters:
2356
Parameters:
2330
  * eax = 50 - function number
2357
  * eax = 50 - function number
2331
  * ebx = 1 - subfunction number
2358
  * ebx = 1 - subfunction number
2332
  * ecx sets a scale: each byte of data defines
2359
  * ecx sets a scale: each byte of data defines
2333
    (2^scale)*(2^scale) pixels
2360
    (2^scale)*(2^scale) pixels
2334
Returned value:
2361
Returned value:
2335
  * function does not return value
2362
  * function does not return value
2336
Remarks:
2363
Remarks:
2337
  * Default scale is 0 (scale factor is 1). If in the shape data
2364
  * Default scale is 0 (scale factor is 1). If in the shape data
2338
    one byte corresponds to one pixel, there is no necessity
2365
    one byte corresponds to one pixel, there is no necessity
2339
    to set scale.
2366
    to set scale.
2340
  * Let's designate xsize = window width (in pixels), ysize = height;
2367
  * Let's designate xsize = window width (in pixels), ysize = height;
2341
    pay attention, that they are one pixel more than defined by
2368
    pay attention, that they are one pixel more than defined by
2342
    functions 0, 67.
2369
    functions 0, 67.
2343
  * On definition of scale xsize and ysize must be divisible
2370
  * On definition of scale xsize and ysize must be divisible
2344
    on 2^scale.
2371
    on 2^scale.
2345
  * Byte of data on offset 'a' must be 0/1 and defines belonging
2372
  * Byte of data on offset 'a' must be 0/1 and defines belonging
2346
    to a window of square with the side 2^scale (if scale=0,
2373
    to a window of square with the side 2^scale (if scale=0,
2347
    this is one pixel) and coordinates of the left upper corner
2374
    this is one pixel) and coordinates of the left upper corner
2348
    (a mod (xsize shr scale), a div (xsize shr scale))
2375
    (a mod (xsize shr scale), a div (xsize shr scale))
2349
  * Data size: (xsize shr scale)*(ysize shr scale).
2376
  * Data size: (xsize shr scale)*(ysize shr scale).
2350
  * Data must be presented in the memory and not change
2377
  * Data must be presented in the memory and not change
2351
    after set of shape.
2378
    after set of shape.
2352
  * The system views the shape data at every window redraw by
2379
  * The system views the shape data at every window redraw by
2353
    function 0.
2380
    function 0.
2354
  * The call of subfunction 0 with NULL pointer results in return
2381
  * The call of subfunction 0 with NULL pointer results in return
2355
    to the rectangular shape.
2382
    to the rectangular shape.
2356
 
2383
 
2357
======================================================================
2384
======================================================================
2358
==================== Function 51 - create thread. ====================
2385
==================== Function 51 - create thread. ====================
2359
======================================================================
2386
======================================================================
2360
Parameters:
2387
Parameters:
2361
  * eax = 51 - function number
2388
  * eax = 51 - function number
2362
  * ebx = 1 - unique subfunction
2389
  * ebx = 1 - unique subfunction
2363
  * ecx = address of thread entry point (starting eip)
2390
  * ecx = address of thread entry point (starting eip)
2364
  * edx = pointer to thread stack (starting esp)
2391
  * edx = pointer to thread stack (starting esp)
2365
Returned value:
2392
Returned value:
2366
  * eax = -1 - error (there is too many threads)
2393
  * eax = -1 - error (there is too many threads)
2367
  * otherwise eax = TID - thread identifier
2394
  * otherwise eax = TID - thread identifier
2368
         
2395
    
2369
 
2396
 
2370
======================================================================
2397
======================================================================
2371
=== Function 52, subfunction 0 - get network driver configuration. ===
2398
=== Function 52, subfunction 0 - get network driver configuration. ===
2372
======================================================================
2399
======================================================================
2373
Parameters:
2400
Parameters:
2374
  * eax = 52 - function number
2401
  * eax = 52 - function number
2375
  * ebx = 0 - subfunction number
2402
  * ebx = 0 - subfunction number
2376
Returned value:
2403
Returned value:
2377
  * eax = configuration dword
2404
  * eax = configuration dword
2378
Remarks:
2405
Remarks:
2379
  * Configuration dword can be set by subfunction 2.
2406
  * Configuration dword can be set by subfunction 2.
2380
  * The kernel does not use this variable. The value of this
2407
  * The kernel does not use this variable. The value of this
2381
    variable and working with it subfunctions 0 and 2 is represented
2408
    variable and working with it subfunctions 0 and 2 is represented
2382
    doubtful.
2409
    doubtful.
2383
 
2410
 
2384
======================================================================
2411
======================================================================
2385
========= Function 52, subfunction 1 - get local IP-address. =========
2412
========= Function 52, subfunction 1 - get local IP-address. =========
2386
======================================================================
2413
======================================================================
2387
Parameters:
2414
Parameters:
2388
  * eax = 52 - function number
2415
  * eax = 52 - function number
2389
  * ebx = 1 - subfunction number
2416
  * ebx = 1 - subfunction number
2390
Returned value:
2417
Returned value:
2391
  * eax = IP-address (4 bytes)
2418
  * eax = IP-address (4 bytes)
2392
Remarks:
2419
Remarks:
2393
  * Local IP-address is set by subfunction 3.
2420
  * Local IP-address is set by subfunction 3.
2394
 
2421
 
2395
======================================================================
2422
======================================================================
2396
=== Function 52, subfunction 2 - set network driver configuration. ===
2423
=== Function 52, subfunction 2 - set network driver configuration. ===
2397
======================================================================
2424
======================================================================
2398
Parameters:
2425
Parameters:
2399
  * eax = 52 - function number
2426
  * eax = 52 - function number
2400
  * ebx = 2 - subfunction number
2427
  * ebx = 2 - subfunction number
2401
  * ecx = configuration dword; if low 7 bits derivate the number 3,
2428
  * ecx = configuration dword; if low 7 bits derivate the number 3,
2402
    function [re-]initializes Ethernet-card, otherwise
2429
    function [re-]initializes Ethernet-card, otherwise
2403
    Ethernet turns off
2430
    Ethernet turns off
2404
Returned value:
2431
Returned value:
2405
  * if Ethernet-interface is not requested, function returns eax=2,
2432
  * if Ethernet-interface is not requested, function returns eax=2,
2406
    but this can be changed in future kernel versions
2433
    but this can be changed in future kernel versions
2407
  * if Ethernet-interface is requested, eax=0 means error
2434
  * if Ethernet-interface is requested, eax=0 means error
2408
    (absence of Ethernet-card), and nonzero value - success
2435
    (absence of Ethernet-card), and nonzero value - success
2409
Remarks:
2436
Remarks:
2410
  * Configuration dword can be read by subfunction 0.
2437
  * Configuration dword can be read by subfunction 0.
2411
  * The kernel does not use this variable. The value of this
2438
  * The kernel does not use this variable. The value of this
2412
    variable, subfunction 0 and part of subfunction 2, which set it,
2439
    variable, subfunction 0 and part of subfunction 2, which set it,
2413
    is represented doubtful.
2440
    is represented doubtful.
2414
 
2441
 
2415
======================================================================
2442
======================================================================
2416
========= Function 52, subfunction 3 - set local IP-address. =========
2443
========= Function 52, subfunction 3 - set local IP-address. =========
2417
======================================================================
2444
======================================================================
2418
Parameters:
2445
Parameters:
2419
  * eax = 52 - function number
2446
  * eax = 52 - function number
2420
  * ebx = 3 - subfunction number
2447
  * ebx = 3 - subfunction number
2421
  * ecx = IP-address (4 bytes)
2448
  * ecx = IP-address (4 bytes)
2422
Returned value:
2449
Returned value:
2423
  * the current implementation returns eax=3, but this can be changed
2450
  * the current implementation returns eax=3, but this can be changed
2424
    in future versions
2451
    in future versions
2425
Remarks:
2452
Remarks:
2426
  * Local IP-address can be get by subfunction 1.
2453
  * Local IP-address can be get by subfunction 1.
2427
 
2454
 
2428
======================================================================
2455
======================================================================
2429
= Function 52, subfunction 6 - add data to the stack of input queue. =
2456
= Function 52, subfunction 6 - add data to the stack of input queue. =
2430
======================================================================
2457
======================================================================
2431
Parameters:
2458
Parameters:
2432
  * eax = 52 - function number
2459
  * eax = 52 - function number
2433
  * ebx = 6 - subfunction number
2460
  * ebx = 6 - subfunction number
2434
  * edx = data size
2461
  * edx = data size
2435
  * esi = data pointer
2462
  * esi = data pointer
2436
Returned value:
2463
Returned value:
2437
  * eax = -1 - error
2464
  * eax = -1 - error
2438
  * eax = 0 - success
2465
  * eax = 0 - success
2439
Remarks:
2466
Remarks:
2440
  * This function is intended only for slow network drivers
2467
  * This function is intended only for slow network drivers
2441
    (PPP, SLIP).
2468
    (PPP, SLIP).
2442
  * Data size must not exceed 1500 bytes, though function
2469
  * Data size must not exceed 1500 bytes, though function
2443
    performs no checks on correctness.
2470
    performs no checks on correctness.
2444
 
2471
 
2445
======================================================================
2472
======================================================================
2446
 Function 52, subfunction 8 - read data from the network output queue. 
2473
 Function 52, subfunction 8 - read data from the network output queue.
2447
======================================================================
2474
======================================================================
2448
Parameters:
2475
Parameters:
2449
  * eax = 52 - function number
2476
  * eax = 52 - function number
2450
  * ebx = 8 - subfunction number
2477
  * ebx = 8 - subfunction number
2451
  * esi = pointer to 1500-byte buffer
2478
  * esi = pointer to 1500-byte buffer
2452
Returned value:
2479
Returned value:
2453
  * eax = number of read bytes (in the current implementation
2480
  * eax = number of read bytes (in the current implementation
2454
    either 0 = no data or 1500)
2481
    either 0 = no data or 1500)
2455
  * data was copied in buffer
2482
  * data was copied in buffer
2456
Remarks:
2483
Remarks:
2457
  * This function is intended only for slow network drivers
2484
  * This function is intended only for slow network drivers
2458
    (PPP, SLIP).
2485
    (PPP, SLIP).
2459
 
2486
 
2460
======================================================================
2487
======================================================================
2461
============ Function 52, subfunction 9 - get gateway IP. ============
2488
============ Function 52, subfunction 9 - get gateway IP. ============
2462
======================================================================
2489
======================================================================
2463
Parameters:
2490
Parameters:
2464
  * eax = 52 - function number
2491
  * eax = 52 - function number
2465
  * ebx = 9 - subfunction number
2492
  * ebx = 9 - subfunction number
2466
Returned value:
2493
Returned value:
2467
  * eax = gateway IP (4 bytes)
2494
  * eax = gateway IP (4 bytes)
2468
 
2495
 
2469
======================================================================
2496
======================================================================
2470
=========== Function 52, subfunction 10 - get subnet mask. ===========
2497
=========== Function 52, subfunction 10 - get subnet mask. ===========
2471
======================================================================
2498
======================================================================
2472
Parameters:
2499
Parameters:
2473
  * eax = 52 - function number
2500
  * eax = 52 - function number
2474
  * ebx = 10 - subfunction number
2501
  * ebx = 10 - subfunction number
2475
Returned value:
2502
Returned value:
2476
  * eax = subnet mask
2503
  * eax = subnet mask
2477
 
2504
 
2478
======================================================================
2505
======================================================================
2479
============ Function 52, subfunction 11 - set gateway IP. ===========
2506
============ Function 52, subfunction 11 - set gateway IP. ===========
2480
======================================================================
2507
======================================================================
2481
Parameters:
2508
Parameters:
2482
  * eax = 52 - function number
2509
  * eax = 52 - function number
2483
  * ebx = 11 - subfunction number
2510
  * ebx = 11 - subfunction number
2484
  * ecx = gateway IP (4 bytes)
2511
  * ecx = gateway IP (4 bytes)
2485
Returned value:
2512
Returned value:
2486
  * the current implementation returns eax=11, but this can be changed
2513
  * the current implementation returns eax=11, but this can be changed
2487
    in future versions
2514
    in future versions
2488
 
2515
 
2489
======================================================================
2516
======================================================================
2490
=========== Function 52, subfunction 12 - set subnet mask. ===========
2517
=========== Function 52, subfunction 12 - set subnet mask. ===========
2491
======================================================================
2518
======================================================================
2492
Parameters:
2519
Parameters:
2493
  * eax = 52 - function number
2520
  * eax = 52 - function number
2494
  * ebx = 12 - subfunction number
2521
  * ebx = 12 - subfunction number
2495
  * ecx = subnet mask
2522
  * ecx = subnet mask
2496
Returned value:
2523
Returned value:
2497
  * the current implementation returns eax=12, but this can be changed
2524
  * the current implementation returns eax=12, but this can be changed
2498
    in future versions
2525
    in future versions
2499
 
2526
 
2500
======================================================================
2527
======================================================================
2501
============== Function 52, subfunction 13 - get DNS IP. =============
2528
============== Function 52, subfunction 13 - get DNS IP. =============
2502
======================================================================
2529
======================================================================
2503
Parameters:
2530
Parameters:
2504
  * eax = 52 - function number
2531
  * eax = 52 - function number
2505
  * ebx = 13 - subfunction number
2532
  * ebx = 13 - subfunction number
2506
Returned value:
2533
Returned value:
2507
  * eax = DNS IP (4 bytes)
2534
  * eax = DNS IP (4 bytes)
2508
 
2535
 
2509
======================================================================
2536
======================================================================
2510
============== Function 52, subfunction 14 - set DNS IP. =============
2537
============== Function 52, subfunction 14 - set DNS IP. =============
2511
======================================================================
2538
======================================================================
2512
Parameters:
2539
Parameters:
2513
  * eax = 52 - function number
2540
  * eax = 52 - function number
2514
  * ebx = 14 - subfunction number
2541
  * ebx = 14 - subfunction number
2515
  * ecx = DNS IP (4 bytes)
2542
  * ecx = DNS IP (4 bytes)
2516
Returned value:
2543
Returned value:
2517
  * the current implementation returns eax=14, but this can be changed
2544
  * the current implementation returns eax=14, but this can be changed
2518
    in future versions
2545
    in future versions
2519
 
2546
 
2520
======================================================================
2547
======================================================================
2521
======== Function 52, subfunction 15 - get local MAC address. ========
2548
======== Function 52, subfunction 15 - get local MAC address. ========
2522
======================================================================
2549
======================================================================
2523
Parameters:
2550
Parameters:
2524
  * eax = 52 - function number
2551
  * eax = 52 - function number
2525
  * ebx = 15 - subfunction number
2552
  * ebx = 15 - subfunction number
2526
  * ecx = 0 - read first 4 bytes,
2553
  * ecx = 0 - read first 4 bytes,
2527
    ecx = 4 - read last 2 bytes
2554
    ecx = 4 - read last 2 bytes
2528
Returned value:
2555
Returned value:
2529
  * for ecx=0: eax = first 4 bytes of MAC address
2556
  * for ecx=0: eax = first 4 bytes of MAC address
2530
  * for ecx=4: ax = last 2 bytes of MAC address,
2557
  * for ecx=4: ax = last 2 bytes of MAC address,
2531
               high half of eax is destroyed
2558
               high half of eax is destroyed
2532
  * for other ecx: eax = -1 indicates an error
2559
  * for other ecx: eax = -1 indicates an error
2533
 
2560
 
2534
======================================================================
2561
======================================================================
2535
============ Function 53, subfunction 0 - open UDP-socket. ===========
2562
============ Function 53, subfunction 0 - open UDP-socket. ===========
2536
======================================================================
2563
======================================================================
2537
Parameters:
2564
Parameters:
2538
  * eax = 53 - function number
2565
  * eax = 53 - function number
2539
  * ebx = 0 - subfunction number
2566
  * ebx = 0 - subfunction number
2540
  * ecx = local port (only low word is taken into account)
2567
  * ecx = local port (only low word is taken into account)
2541
  * edx = remote port (only low word is taken into account)
2568
  * edx = remote port (only low word is taken into account)
2542
  * esi = remote IP
2569
  * esi = remote IP
2543
Returned value:
2570
Returned value:
2544
  * eax = -1 = 0xFFFFFFFF - error; ebx destroyed
2571
  * eax = -1 = 0xFFFFFFFF - error; ebx destroyed
2545
  * eax = socket handle (some number which unambiguously identifies
2572
  * eax = socket handle (some number which unambiguously identifies
2546
    socket and have sense only for the system) - success;
2573
    socket and have sense only for the system) - success;
2547
    ebx destroyed
2574
    ebx destroyed
2548
 
2575
 
2549
======================================================================
2576
======================================================================
2550
=========== Function 53, subfunction 1 - close UDP-socket. ===========
2577
=========== Function 53, subfunction 1 - close UDP-socket. ===========
2551
======================================================================
2578
======================================================================
2552
Parameters:
2579
Parameters:
2553
  * eax = 53 - function number
2580
  * eax = 53 - function number
2554
  * ebx = 1 - subfunction number
2581
  * ebx = 1 - subfunction number
2555
  * ecx = socket handle
2582
  * ecx = socket handle
2556
Returned value:
2583
Returned value:
2557
  * eax = -1 - incorrect handle
2584
  * eax = -1 - incorrect handle
2558
  * eax = 0 - success
2585
  * eax = 0 - success
2559
  * ebx destroyed
2586
  * ebx destroyed
2560
Remarks:
2587
Remarks:
2561
  * The current implementation does not close automatically all
2588
  * The current implementation does not close automatically all
2562
    sockets of a thread at termination. In particular, one should not
2589
    sockets of a thread at termination. In particular, one should not
2563
    kill a thread with many opened sockets - there will be an outflow
2590
    kill a thread with many opened sockets - there will be an outflow
2564
    of resources.
2591
    of resources.
2565
  * The current implementation does no checks on correctness
-
 
2566
    (function returns error only if thread tries to close not opened
-
 
2567
    socket with correct handle).
-
 
2568
 
2592
 
2569
======================================================================
2593
======================================================================
2570
============== Function 53, subfunction 2 - poll socket. =============
2594
============== Function 53, subfunction 2 - poll socket. =============
2571
======================================================================
2595
======================================================================
2572
Parameters:
2596
Parameters:
2573
  * eax = 53 - function number
2597
  * eax = 53 - function number
2574
  * ebx = 2 - subfunction number
2598
  * ebx = 2 - subfunction number
2575
  * ecx = socket handle
2599
  * ecx = socket handle
2576
Returned value:
2600
Returned value:
2577
  * eax = number of read bytes
2601
  * eax = number of read bytes, 0 for incorrect handle
2578
  * ebx destroyed
2602
  * ebx destroyed
2579
Remarks:
-
 
2580
  * There is no checks for correctness.
-
 
2581
 
2603
 
2582
======================================================================
2604
======================================================================
2583
========= Function 53, subfunction 3 - read byte from socket. ========
2605
========= Function 53, subfunction 3 - read byte from socket. ========
2584
======================================================================
2606
======================================================================
2585
Parameters:
2607
Parameters:
2586
  * eax = 53 - function number
2608
  * eax = 53 - function number
2587
  * ebx = 3 - subfunction number
2609
  * ebx = 3 - subfunction number
2588
  * ecx = socket handle
2610
  * ecx = socket handle
2589
Returned value:
2611
Returned value:
2590
  * if there is no read data: eax=0, bl=0,
2612
  * if there is no read data or handle is incorrect: eax=0, bl=0,
2591
    other bytes of ebx are destroyed
2613
    other bytes of ebx are destroyed
2592
  * if there are read data: eax=number of rest bytes
2614
  * if there are read data: eax=number of rest bytes
2593
    (possibly 0), bl=read byte, other bytes of ebx are destroyed
2615
    (possibly 0), bl=read byte, other bytes of ebx are destroyed
2594
Remarks:
-
 
2595
  * There is no checks for correctness.
-
 
2596
 
2616
 
2597
======================================================================
2617
======================================================================
2598
========== Function 53, subfunction 4 - write to UDP-socket. =========
2618
========== Function 53, subfunction 4 - write to UDP-socket. =========
2599
======================================================================
2619
======================================================================
2600
Parameters:
2620
Parameters:
2601
  * eax = 53 - function number
2621
  * eax = 53 - function number
2602
  * ebx = 4 - subfunction number
2622
  * ebx = 4 - subfunction number
2603
  * ecx = socket handle
2623
  * ecx = socket handle
2604
  * edx = number of bytes to write
2624
  * edx = number of bytes to write
2605
  * esi = pointer to data to write
2625
  * esi = pointer to data to write
2606
Returned value:
2626
Returned value:
2607
  * eax = 0xffffffff - invalid handle
2627
  * eax = 0xffffffff - error (invalid handle or not enough memory)
2608
  * eax = 0xffff - not enough memory
-
 
2609
  * eax = 0 - success
2628
  * eax = 0 - success
2610
  * ebx destroyed
2629
  * ebx destroyed
2611
Remarks:
2630
Remarks:
2612
  * Check on validity of handle is minimal - only not very incorrect
-
 
2613
    not opened handles are eliminated.
-
 
2614
  * Number of bytes to write must not exceed 1500-28, though
2631
  * Number of bytes to write must not exceed 1500-28, though
2615
    the appropriate check is not made.
2632
    the appropriate check is not made.
2616
 
2633
 
2617
======================================================================
2634
======================================================================
2618
============ Function 53, subfunction 5 - open TCP-socket. ===========
2635
============ Function 53, subfunction 5 - open TCP-socket. ===========
2619
======================================================================
2636
======================================================================
2620
Parameters:
2637
Parameters:
2621
  * eax = 53 - function number
2638
  * eax = 53 - function number
2622
  * ebx = 5 - subfunction number
2639
  * ebx = 5 - subfunction number
2623
  * ecx = local port (only low word is taken into account)
2640
  * ecx = local port (only low word is taken into account)
2624
  * edx = remote port (only low word is taken into account)
2641
  * edx = remote port (only low word is taken into account)
2625
  * esi = remote IP
2642
  * esi = remote IP
2626
  * edi = open mode: SOCKET_PASSIVE=0 or SOCKET_ACTIVE=1
2643
  * edi = open mode: SOCKET_PASSIVE=0 or SOCKET_ACTIVE=1
2627
Returned value:
2644
Returned value:
2628
  * eax = -1 = 0xFFFFFFFF - error; ebx destroys
2645
  * eax = -1 = 0xFFFFFFFF - error; ebx destroys
2629
  * eax = socket handle (some number which unambiguously identifies
2646
  * eax = socket handle (some number which unambiguously identifies
2630
    socket and have sense only for the system) - success;
2647
    socket and have sense only for the system) - success;
2631
    ebx destroyed
2648
    ebx destroyed
2632
 
2649
 
2633
======================================================================
2650
======================================================================
2634
========= Function 53, subfunction 6 - get TCP-socket status. ========
2651
========= Function 53, subfunction 6 - get TCP-socket status. ========
2635
======================================================================
2652
======================================================================
2636
Parameters:
2653
Parameters:
2637
  * eax = 53 - function number
2654
  * eax = 53 - function number
2638
  * ebx = 6 - subfunction number
2655
  * ebx = 6 - subfunction number
2639
  * ecx = socket handle
2656
  * ecx = socket handle
2640
Returned value:
2657
Returned value:
2641
  * eax = socket status: one of
2658
  * eax = 0 for incorrect handle or socket status: one of
2642
  * TCB_LISTEN = 1
2659
  * TCB_LISTEN = 1
2643
  * TCB_SYN_SENT = 2
2660
  * TCB_SYN_SENT = 2
2644
  * TCB_SYN_RECEIVED = 3
2661
  * TCB_SYN_RECEIVED = 3
2645
  * TCB_ESTABLISHED = 4
2662
  * TCB_ESTABLISHED = 4
2646
  * TCB_FIN_WAIT_1 = 5
2663
  * TCB_FIN_WAIT_1 = 5
2647
  * TCB_FIN_WAIT_2 = 6
2664
  * TCB_FIN_WAIT_2 = 6
2648
  * TCB_CLOSE_WAIT = 7
2665
  * TCB_CLOSE_WAIT = 7
2649
  * TCB_CLOSING = 8
2666
  * TCB_CLOSING = 8
2650
  * TCB_LAST_ASK = 9
2667
  * TCB_LAST_ASK = 9
2651
  * TCB_TIME_WAIT = 10
2668
  * TCB_TIME_WAIT = 10
2652
  * TCB_CLOSED = 11
2669
  * TCB_CLOSED = 11
2653
  * ebx destroys
2670
  * ebx destroyed
2654
Remarks:
-
 
2655
  * There is no checks for correctness.
-
 
2656
 
2671
 
2657
======================================================================
2672
======================================================================
2658
========== Function 53, subfunction 7 - write to TCP-socket. =========
2673
========== Function 53, subfunction 7 - write to TCP-socket. =========
2659
======================================================================
2674
======================================================================
2660
Parameters:
2675
Parameters:
2661
  * eax = 53 - function number
2676
  * eax = 53 - function number
2662
  * ebx = 7 - subfunction number
2677
  * ebx = 7 - subfunction number
2663
  * ecx = socket handle
2678
  * ecx = socket handle
2664
  * edx = number of bytes to write
2679
  * edx = number of bytes to write
2665
  * esi = pointer to data to write
2680
  * esi = pointer to data to write
2666
Returned value:
2681
Returned value:
2667
  * eax = 0xffffffff - error
-
 
2668
  * eax = 0xffff - not enough memory
2682
  * eax = 0xffffffff - error (invalid handle or not enough memory)
2669
  * eax = 0 - success
2683
  * eax = 0 - success
2670
  * ebx destroyed
2684
  * ebx destroyed
2671
Remarks:
2685
Remarks:
2672
  * Check on validity of handle is minimal - only not very incorrect
-
 
2673
    not opened handles are eliminated.
-
 
2674
  * Number of bytes to write must not exceed 1500-40, though
2686
  * Number of bytes to write must not exceed 1500-40, though
2675
    the appropriate check is not made.
2687
    the appropriate check is not made.
2676
 
2688
 
2677
======================================================================
2689
======================================================================
2678
=========== Function 53, subfunction 8 - close TCP-socket. ===========
2690
=========== Function 53, subfunction 8 - close TCP-socket. ===========
2679
======================================================================
2691
======================================================================
2680
Parameters:
2692
Parameters:
2681
  * eax = 53 - function number
2693
  * eax = 53 - function number
2682
  * ebx = 8 - subfunction number
2694
  * ebx = 8 - subfunction number
2683
  * ecx = socket handle
2695
  * ecx = socket handle
2684
Returned value:
2696
Returned value:
2685
  * eax = -1 - invalid handle
2697
  * eax = -1 - error (invalid handle or
2686
  * eax = 0xffff - not enough memory for socket close packet
2698
    not enough memory for socket close packet)
2687
  * eax = 0 - success
2699
  * eax = 0 - success
2688
  * in many cases eax is destroyed (the result of function 'queue'
-
 
2689
    is returned) - probably this is bug, which will be corrected
-
 
2690
  * ebx destroyed
2700
  * ebx destroyed
2691
Remarks:
2701
Remarks:
2692
  * The current implementation does not close automatically all
2702
  * The current implementation does not close automatically all
2693
    sockets of a thread at termination. In particular, one should not
2703
    sockets of a thread at termination. In particular, one should not
2694
    kill a thread with many opened sockets - there will be an outflow
2704
    kill a thread with many opened sockets - there will be an outflow
2695
    of resources.
2705
    of resources.
2696
  * The current implementation does no checks on correctness
-
 
2697
    (function returns error only if thread tries to close not opened
-
 
2698
    socket with correct handle).
-
 
2699
 
2706
 
2700
======================================================================
2707
======================================================================
2701
=== Function 53, subfunction 9 - check whether local port is free. ===
2708
=== Function 53, subfunction 9 - check whether local port is free. ===
2702
======================================================================
2709
======================================================================
2703
Parameters:
2710
Parameters:
2704
  * eax = 53 - function number
2711
  * eax = 53 - function number
2705
  * ebx = 9 - subfunction number
2712
  * ebx = 9 - subfunction number
2706
  * ecx = local port number (low 16 bits are used only)
2713
  * ecx = local port number (low 16 bits are used only)
2707
Returned value:
2714
Returned value:
2708
  * eax = 0 - port is used
2715
  * eax = 0 - port is used
2709
  * eax = 1 - port is free
2716
  * eax = 1 - port is free
2710
  * ebx destroyed
2717
  * ebx destroyed
2711
 
2718
 
2712
======================================================================
2719
======================================================================
2713
===== Function 53, subfunction 10 - query Ethernet cable status. =====
2720
===== Function 53, subfunction 10 - query Ethernet cable status. =====
2714
======================================================================
2721
======================================================================
2715
Parameters:
2722
Parameters:
2716
  * eax = 53 - function number
2723
  * eax = 53 - function number
2717
  * ebx = 10 - subfunction number
2724
  * ebx = 10 - subfunction number
2718
Returned value:
2725
Returned value:
2719
  * al = -1 - a network driver is not loaded or
2726
  * al = -1 - a network driver is not loaded or
2720
              does not support this function
2727
              does not support this function
2721
  * al = 0 - Ethernet cable is unplugged
2728
  * al = 0 - Ethernet cable is unplugged
2722
  * al = 1 - Ethernet cable is plugged
2729
  * al = 1 - Ethernet cable is plugged
2723
  * ebx destroyed
2730
  * ebx destroyed
2724
Remarks:
2731
Remarks:
2725
  * The current kernel implementation supports this function
2732
  * The current kernel implementation supports this function
2726
    only for RTL8139 network cards.
2733
    only for RTL8139 network cards.
2727
 
2734
 
2728
======================================================================
2735
======================================================================
2729
======= Function 53, subfunction 11 - read network stack data. =======
2736
======= Function 53, subfunction 11 - read network stack data. =======
2730
======================================================================
2737
======================================================================
2731
Paramters:
2738
Paramters:
2732
  * eax = 53 - function number
2739
  * eax = 53 - function number
2733
  * ebx = 11 - subfunction number
2740
  * ebx = 11 - subfunction number
2734
  * ecx = socket handle
2741
  * ecx = socket handle
2735
  * edx = pointer to buffer
2742
  * edx = pointer to buffer
2736
  * esi = number of bytes to read;
2743
  * esi = number of bytes to read;
2737
  * esi = 0 - read all data (maximum 4096 bytes)
2744
  * esi = 0 - read all data (maximum 4096 bytes)
2738
Returned value:
2745
Returned value:
2739
  * eax = number of bytes read
2746
  * eax = number of bytes read (0 for incorrect handle)
2740
  * ebx destroyed
2747
  * ebx destroyed
2741
Remakrs:
-
 
2742
  * There is no check on handle correctness.
-
 
2743
 
2748
 
2744
======================================================================
2749
======================================================================
2745
= Function 53, subfunction 255 - debug information of network driver. 
2750
= Function 53, subfunction 255 - debug information of network driver.
2746
======================================================================
2751
======================================================================
2747
Parameters:
2752
Parameters:
2748
  * eax = 53 - function number
2753
  * eax = 53 - function number
2749
  * ebx = 255 - subfunction number
2754
  * ebx = 255 - subfunction number
2750
  * ecx = type of requested information (see below)
2755
  * ecx = type of requested information (see below)
2751
Returned value:
2756
Returned value:
2752
  * eax = requested information
2757
  * eax = requested information
2753
  * ebx destroyed
2758
  * ebx destroyed
2754
Possible values for ecx:
2759
Possible values for ecx:
2755
  * 100: length of queue 0 (empty queue)
2760
  * 100: length of queue 0 (empty queue)
2756
  * 101: length of queue 1 (ip-out queue)
2761
  * 101: length of queue 1 (ip-out queue)
2757
  * 102: length of queue 2 (ip-in queue)
2762
  * 102: length of queue 2 (ip-in queue)
2758
  * 103: length of queue 3 (net1out queue)
2763
  * 103: length of queue 3 (net1out queue)
2759
  * 200: number of items in the ARP table
2764
  * 200: number of items in the ARP table
2760
  * 201: size of the ARP table (in items) (20 for current version)
2765
  * 201: size of the ARP table (in items) (20 for current version)
2761
  * 202: read item at edx of the ARP table to the temporary buffer,
2766
  * 202: read item at edx of the ARP table to the temporary buffer,
2762
    whence 5 following types take information;
2767
    whence 5 following types take information;
2763
    in this case eax is not defined
2768
    in this case eax is not defined
2764
  * 203: IP-address saved by type 202
2769
  * 203: IP-address saved by type 202
2765
  * 204: high dword of MAC-address saved by type 202
2770
  * 204: high dword of MAC-address saved by type 202
2766
  * 205: low word of MAC-address saved by type 202
2771
  * 205: low word of MAC-address saved by type 202
2767
  * 206: status word saved by type 202
2772
  * 206: status word saved by type 202
2768
  * 207: ttl word saved by type 202
2773
  * 207: ttl word saved by type 202
2769
  * 2: total number of received IP-packets
2774
  * 2: total number of received IP-packets
2770
  * 3: total number of transferred IP-packets
2775
  * 3: total number of transferred IP-packets
2771
  * 4: total number of dumped received packets
2776
  * 4: total number of dumped received packets
2772
  * 5: total number of received ARP-packets
2777
  * 5: total number of received ARP-packets
2773
  * 6: status of packet driver, 0=inactive, nonzero=active
2778
  * 6: status of packet driver, 0=inactive, nonzero=active
2774
 
2779
 
2775
======================================================================
2780
======================================================================
2776
========== Function 55, subfunction 0 - load data for SB16. ==========
-
 
2777
======================================================================
-
 
2778
Parameters:
-
 
2779
  * eax = 55 - function number
-
 
2780
  * ebx = 0 - subfunction number
-
 
2781
  * ecx = pointer to data (is copied 64 kilobytes, is used as much as
-
 
2782
    set by subfunction 2)
-
 
2783
Returned value:
-
 
2784
  * function does not return value
-
 
2785
Remarks:
-
 
2786
  * Format and size of data are set by subfunction 2.
-
 
2787
 
-
 
2788
======================================================================
-
 
2789
======== Function 55, subfunction 1 - begin play data on SB16. =======
-
 
2790
======================================================================
-
 
2791
Parameters:
-
 
2792
  * eax = 55 - function number
-
 
2793
  * ebx = 1 - subfunction number
-
 
2794
Returned value:
-
 
2795
  * function does not return value
-
 
2796
Remarks:
-
 
2797
  * Previously data must be loaded by subfunction 0 and
-
 
2798
    their format must be defined by subfunction 2.
-
 
2799
  * Function returns control, when playing of data began; after that
-
 
2800
    play goes independently from application (and does not use
-
 
2801
    processor time at all).
-
 
2802
  * Previously must be defined SB16 base port
-
 
2803
    (by subfunction 4 of function 21) and DMA channel
-
 
2804
    (by subfunction 10 of function 21).
-
 
2805
 
-
 
2806
======================================================================
-
 
2807
======== Function 55, subfunction 2 - set format of SB16 data. =======
-
 
2808
======================================================================
-
 
2809
Parameters:
-
 
2810
  * eax = 55 - function number
-
 
2811
  * ebx = 2 - subfunction number
-
 
2812
  * ecx = 0 - set digit capacity
-
 
2813
    * edx = 1 - 8bit mono
-
 
2814
    * edx = 2 - 8bit stereo
-
 
2815
  * ecx = 1 - set data size
-
 
2816
    * edx = size in bytes
-
 
2817
  * ecx = 2 - set play frequency
-
 
2818
    * edx = frequency
-
 
2819
Returned value:
-
 
2820
  * function does not return value
-
 
2821
Remarks:
-
 
2822
  * When the system boots, it sets following default parameters:
-
 
2823
    digit capacity - 8bit mono, size - 64 Kb, frequency - 44100 Hz.
-
 
2824
    Nevertheless it is recommended to set necessary values obviously
-
 
2825
    as they could be reset by some application.
-
 
2826
 
-
 
2827
======================================================================
-
 
2828
 Function 55, subfunction 55 - begin to play data on built-in speaker. 
2781
 Function 55, subfunction 55 - begin to play data on built-in speaker.
2829
======================================================================
2782
======================================================================
2830
Parameters:
2783
Parameters:
2831
  * eax = 55 - function number
2784
  * eax = 55 - function number
2832
  * ebx = 55 - subfunction number
2785
  * ebx = 55 - subfunction number
2833
  * esi = pointer to data
2786
  * esi = pointer to data
2834
Returned value:
2787
Returned value:
2835
  * eax = 0 - success
2788
  * eax = 0 - success
2836
  * eax = 55 - error (speaker is off or busy)
2789
  * eax = 55 - error (speaker is off or busy)
2837
Data is an array of items with variable length.
2790
Data is an array of items with variable length.
2838
Format of each item is defined by first byte:
2791
Format of each item is defined by first byte:
2839
  * 0 = end of data
2792
  * 0 = end of data
2840
  * 1..0x80 = sets sound duration on 1/100 of second; sound note
2793
  * 1..0x80 = sets sound duration on 1/100 of second; sound note
2841
    is defined by immediate value of frequency
2794
    is defined by immediate value of frequency
2842
    * following word (2 bytes) contains frequency divider;
2795
    * following word (2 bytes) contains frequency divider;
2843
      frequency is defined as 1193180/divider
2796
      frequency is defined as 1193180/divider
2844
  * 0x81 = invalid
2797
  * 0x81 = invalid
2845
  * 0x82..0xFF = note is defined by octave and number:
2798
  * 0x82..0xFF = note is defined by octave and number:
2846
    * duration in 1/100 of second = (first byte)-0x81
2799
    * duration in 1/100 of second = (first byte)-0x81
2847
    * there is one more byte;
2800
    * there is one more byte;
2848
    * (second byte)=0xFF - delay
2801
    * (second byte)=0xFF - delay
2849
    * otherwise it looks like a*0x10+b, where b=number of the note in
2802
    * otherwise it looks like a*0x10+b, where b=number of the note in
2850
      an octave from 1 to 12, a=number of octave (beginning from 0)
2803
      an octave from 1 to 12, a=number of octave (beginning from 0)
2851
Remarks:
2804
Remarks:
2852
  * Speaker play can be disabled/enabled by
2805
  * Speaker play can be disabled/enabled by
2853
    subfunction 8 of function 18.
2806
    subfunction 8 of function 18.
2854
  * Function returns control, having informed the system
2807
  * Function returns control, having informed the system
2855
    an information on request. Play itself goes independently from
2808
    an information on request. Play itself goes independently from
2856
    the program.
2809
    the program.
2857
  * The data must be kept in the memory at least up to the end
2810
  * The data must be kept in the memory at least up to the end
2858
    of play.
2811
    of play.
2859
 
2812
 
2860
======================================================================
2813
======================================================================
2861
======================= Function 57 - PCI BIOS. ======================
2814
======================= Function 57 - PCI BIOS. ======================
2862
======================================================================
2815
======================================================================
2863
Parameters:
2816
Parameters:
2864
  * eax = 57 - function number
2817
  * eax = 57 - function number
2865
  * ebp corresponds to al in PCI BIOS specification
2818
  * ebp corresponds to al in PCI BIOS specification
2866
  * other registers are set according to PCI BIOS specification
2819
  * other registers are set according to PCI BIOS specification
2867
Returned value:
2820
Returned value:
2868
  * CF is undefined
2821
  * CF is undefined
2869
  * other registers are set according to PCI BIOS specification
2822
  * other registers are set according to PCI BIOS specification
2870
Remarks:
2823
Remarks:
2871
  * Many effects of this function can be also achieved with
2824
  * Many effects of this function can be also achieved with
2872
    corresponding subfunctions of function 62.
2825
    corresponding subfunctions of function 62.
2873
  * The function calls PCI32 BIOS extension, documented e.g. in
2826
  * The function calls PCI32 BIOS extension, documented e.g. in
2874
    http://alpha1.dyns.net/files/PCI/bios21.pdf.
2827
    http://alpha1.dyns.net/files/PCI/bios21.pdf.
2875
  * If BIOS does not support this extension, its behavior is emulated
2828
  * If BIOS does not support this extension, its behavior is emulated
2876
    (through kernel-mode analogues of subfunctions of function 62).
2829
    (through kernel-mode analogues of subfunctions of function 62).
2877
 
2830
 
2878
======================================================================
2831
======================================================================
2879
================ Function 58 - work with file system. ================
2832
================ Function 58 - work with file system. ================
2880
======================================================================
2833
======================================================================
2881
Parameters:
2834
Parameters:
2882
  * eax = 58
2835
  * eax = 58
2883
  * ebx = pointer to the information structure
2836
  * ebx = pointer to the information structure
2884
Returned value:
2837
Returned value:
2885
  * eax = 0 - success; otherwise file system error code
2838
  * eax = 0 - success; otherwise file system error code
2886
  * some subfunctions return value in other registers too
2839
  * some subfunctions return value in other registers too
2887
General format of the information structure:
2840
General format of the information structure:
2888
  * +0: dword: subfunction number
2841
  * +0: dword: subfunction number
2889
  * +4: dword: number of block
2842
  * +4: dword: number of block
2890
  * +8: dword: size
2843
  * +8: dword: size
2891
  * +12 = +0xC: dword: pointer to data
2844
  * +12 = +0xC: dword: pointer to data
2892
  * +16 = +0x10: dword: pointer to a memory for system operations
2845
  * +16 = +0x10: dword: pointer to a memory for system operations
2893
    (4096 bytes)
2846
    (4096 bytes)
2894
  * +20 = +0x14: n db: ASCIIZ-string with the file name
2847
  * +20 = +0x14: n db: ASCIIZ-string with the file name
2895
Specifications - in documentation on the appropriate subfunction.
2848
Specifications - in documentation on the appropriate subfunction.
2896
Filename is case-insensitive for latin letters, russian letters
2849
Filename is case-insensitive for latin letters, russian letters
2897
must be capital.
2850
must be capital.
2898
Format of filename:
2851
Format of filename:
2899
/base/number/dir1/dir2/.../dirn/file,
2852
/base/number/dir1/dir2/.../dirn/file,
2900
where /base/number identifies device, on which file is located:
2853
where /base/number identifies device, on which file is located:
2901
one of
2854
one of
2902
  * /RD/1 = /RAMDISK/1 to access ramdisk
2855
  * /RD/1 = /RAMDISK/1 to access ramdisk
2903
  * /FD/1 = /FLOPPYDISK/1 to access first floppy drive,
2856
  * /FD/1 = /FLOPPYDISK/1 to access first floppy drive,
2904
    /FD/2 = /FLOPPYDISK/2 to access second one
2857
    /FD/2 = /FLOPPYDISK/2 to access second one
2905
  * /HD/x = /HARDDISK/x - obsolete variant of access to hard disk
2858
  * /HD/x = /HARDDISK/x - obsolete variant of access to hard disk
2906
    (in this case base is defined by subfunction 7 of function 21),
2859
    (in this case base is defined by subfunction 7 of function 21),
2907
    x - partition number (beginning from 1)
2860
    x - partition number (beginning from 1)
2908
  * /HD0/x, /HD1/x, /HD2/x, /HD3/x to access accordingly to devices
2861
  * /HD0/x, /HD1/x, /HD2/x, /HD3/x to access accordingly to devices
2909
    IDE0 (Primary Master), IDE1 (Primary Slave),
2862
    IDE0 (Primary Master), IDE1 (Primary Slave),
2910
    IDE2 (Secondary Master), IDE3 (Secondary Slave);
2863
    IDE2 (Secondary Master), IDE3 (Secondary Slave);
2911
    x - partition number on the selected hard drive, varies from 1
2864
    x - partition number on the selected hard drive, varies from 1
2912
    to 255 (on each hard drive the indexing starts from 1)
2865
    to 255 (on each hard drive the indexing starts from 1)
2913
Remarks:
2866
Remarks:
2914
  * In the first two cases it is also possible to use FIRST
2867
  * In the first two cases it is also possible to use FIRST
2915
    instead of 1, SECOND instead of 2, but it is not recommended
2868
    instead of 1, SECOND instead of 2, but it is not recommended
2916
    for convenience of transition to the future extensions.
2869
    for convenience of transition to the future extensions.
2917
  * Limitation n<=39 is imposed.
2870
  * Limitation n<=39 is imposed.
2918
  * Names of folders and file dir1,...,dirn,file must have the
2871
  * Names of folders and file dir1,...,dirn,file must have the
2919
    format 8.3: name no more than 8 characters, dot, extension no
2872
    format 8.3: name no more than 8 characters, dot, extension no
2920
    more than 3 characters. Trailing spaces are ignored, no other
2873
    more than 3 characters. Trailing spaces are ignored, no other
2921
    spaces is allowed. If name occupies equally 8 characters,
2874
    spaces is allowed. If name occupies equally 8 characters,
2922
    dot may be omitted (though it is not recommended to use this
2875
    dot may be omitted (though it is not recommended to use this
2923
    feature for convenience of transition to the future extensions).
2876
    feature for convenience of transition to the future extensions).
2924
  * This function does not support folders on ramdisk.
2877
  * This function does not support folders on ramdisk.
2925
Examples:
2878
Examples:
2926
  * '/RAMDISK/FIRST/KERNEL.ASM',0
2879
  * '/RAMDISK/FIRST/KERNEL.ASM',0
2927
    '/rd/1/kernel.asm',0
2880
    '/rd/1/kernel.asm',0
2928
  * '/HD0/1/kernel.asm',0
2881
  * '/HD0/1/kernel.asm',0
2929
  * '/hd0/1/menuet/pics/tanzania.bmp',0
2882
  * '/hd0/1/menuet/pics/tanzania.bmp',0
2930
Existing subfunctions:
2883
Existing subfunctions:
2931
  * subfunction 0 - read file/folder
2884
  * subfunction 0 - read file/folder
2932
  * subfunction 8 - LBA-read from device
2885
  * subfunction 8 - LBA-read from device
2933
  * subfunction 15 - get file system information
2886
  * subfunction 15 - get file system information
2934
 
2887
 
2935
======================================================================
2888
======================================================================
2936
=========== Function 58, subfunction 0 - read file/folder. ===========
2889
=========== Function 58, subfunction 0 - read file/folder. ===========
2937
======================================================================
2890
======================================================================
2938
Parameters:
2891
Parameters:
2939
  * eax = 58
2892
  * eax = 58
2940
  * ebx = pointer to the information structure
2893
  * ebx = pointer to the information structure
2941
Format of the information structure:
2894
Format of the information structure:
2942
  * +0: dword: 0 = subfunction number
2895
  * +0: dword: 0 = subfunction number
2943
  * +4: dword: first block to read (beginning from 0)
2896
  * +4: dword: first block to read (beginning from 0)
2944
  * +8: dword: amount of blocks to read
2897
  * +8: dword: amount of blocks to read
2945
  * +12 = +0xC: dword: pointer to buffer for data
2898
  * +12 = +0xC: dword: pointer to buffer for data
2946
  * +16 = +0x10: dword: pointer to buffer for system operations
2899
  * +16 = +0x10: dword: pointer to buffer for system operations
2947
    (4096 bytes)
2900
    (4096 bytes)
2948
  * +20 = +0x14: ASCIIZ-name of file, the rules of names forming are
2901
  * +20 = +0x14: ASCIIZ-name of file, the rules of names forming are
2949
    given in the general description
2902
    given in the general description
2950
Returned value:
2903
Returned value:
2951
  * eax = 0 - success, otherwise file system error code
2904
  * eax = 0 - success, otherwise file system error code
2952
  * ebx = file size (in bytes) or -1=0xffffffff, if file was not found
2905
  * ebx = file size (in bytes) or -1=0xffffffff, if file was not found
2953
Remarks:
2906
Remarks:
2954
  * Block size is 512 bytes.
2907
  * Block size is 512 bytes.
2955
  * This function is obsolete, for reading files use subfunction 0
2908
  * This function is obsolete, for reading files use subfunction 0
2956
    of function 70, for reading folders - subfunction 1 of
2909
    of function 70, for reading folders - subfunction 1 of
2957
    function 70.
2910
    function 70.
2958
  * Function can read contents of a folder. Only FAT file system is
2911
  * Function can read contents of a folder. Only FAT file system is
2959
    supported. The format of FAT-folder is described
2912
    supported. The format of FAT-folder is described
2960
    in any FAT documentation.
2913
    in any FAT documentation.
2961
  * Size of a folder is determined by size of FAT clusters chain.
2914
  * Size of a folder is determined by size of FAT clusters chain.
2962
  * If file was ended before last requested block was read,
2915
  * If file was ended before last requested block was read,
2963
    the function will read as many as it can, and after that return
2916
    the function will read as many as it can, and after that return
2964
    eax=6 (EOF).
2917
    eax=6 (EOF).
2965
  * Function can read root folders /rd/1,/fd/x,/hd[n]/x, but
2918
  * Function can read root folders /rd/1,/fd/x,/hd[n]/x, but
2966
    in the first two cases the current implementation does not follow
2919
    in the first two cases the current implementation does not follow
2967
    to the declared rules:
2920
    to the declared rules:
2968
    for /rd/1:
2921
    for /rd/1:
2969
    * if one want to read 0 blocks, function considers,
2922
    * if one want to read 0 blocks, function considers,
2970
      that he requested 1;
2923
      that he requested 1;
2971
    * if one requests more than 14 blocks or starting block is
2924
    * if one requests more than 14 blocks or starting block is
2972
      not less than 14, function returns eax=5 (not found) è ebx=-1;
2925
      not less than 14, function returns eax=5 (not found) è ebx=-1;
2973
    * size of ramdisk root folder is 14 blocks, 
2926
    * size of ramdisk root folder is 14 blocks,
2974
      0x1C00=7168 áàéò; but function returns ebx=0
2927
      0x1C00=7168 áàéò; but function returns ebx=0
2975
      (except of the case of previous item);
2928
      (except of the case of previous item);
2976
    * strangely enough, it is possible to read 14th block (which
2929
    * strangely enough, it is possible to read 14th block (which
2977
      generally contains a garbage - I remind, the indexing begins
2930
      generally contains a garbage - I remind, the indexing begins
2978
      from 0);
2931
      from 0);
2979
    * if some block with the number not less than 14 was requested,
2932
    * if some block with the number not less than 14 was requested,
2980
      function returns eax=6(EOF); otherwise eax=0.
2933
      function returns eax=6(EOF); otherwise eax=0.
2981
    For /fd/x:
2934
    For /fd/x:
2982
    * if the start block is not less than 14, function returns
2935
    * if the start block is not less than 14, function returns
2983
      eax=5 (not found) and ebx=0;
2936
      eax=5 (not found) and ebx=0;
2984
    * note that format of FAT12 allows floppies with the root size
2937
    * note that format of FAT12 allows floppies with the root size
2985
      more or less than 14 blocks;
2938
      more or less than 14 blocks;
2986
    * check for length is not performed;
2939
    * check for length is not performed;
2987
    * if data was successful read, function returns
2940
    * if data was successful read, function returns
2988
      eax=0,ebx=0; otherwise eax=10 (access denied), ebx=-1.
2941
      eax=0,ebx=0; otherwise eax=10 (access denied), ebx=-1.
2989
  * The function handles reading of special folders /,/rd,/fd,/hd[n];
2942
  * The function handles reading of special folders /,/rd,/fd,/hd[n];
2990
    but the result does not correspond to expected (on operations with
2943
    but the result does not correspond to expected (on operations with
2991
    normal files/folders), does not follow the declared rules,
2944
    normal files/folders), does not follow the declared rules,
2992
    may be changed in future versions of the kernel and consequently
2945
    may be changed in future versions of the kernel and consequently
2993
    is not described. To obtain the information about the equipment
2946
    is not described. To obtain the information about the equipment
2994
    use subfunction 11 of function 18 or
2947
    use subfunction 11 of function 18 or
2995
    read corresponding folder with subfunction 1 of function 70.
2948
    read corresponding folder with subfunction 1 of function 70.
2996
 
2949
 
2997
======================================================================
2950
======================================================================
2998
========= Function 58, subfunction 8 - LBA-read from device. =========
2951
========= Function 58, subfunction 8 - LBA-read from device. =========
2999
======================================================================
2952
======================================================================
3000
Parameters:
2953
Parameters:
3001
  * eax = 58 - function number
2954
  * eax = 58 - function number
3002
  * ebx = pointer to the information structure
2955
  * ebx = pointer to the information structure
3003
Format of the information structure:
2956
Format of the information structure:
3004
  * +0: dword: 8 = subfunction number
2957
  * +0: dword: 8 = subfunction number
3005
  * +4: dword: number of block to read (beginning from 0)
2958
  * +4: dword: number of block to read (beginning from 0)
3006
  * +8: dword: ignored (set to 1)
2959
  * +8: dword: ignored (set to 1)
3007
  * +12 = +0xC: dword: pointer to buffer for data (512 bytes)
2960
  * +12 = +0xC: dword: pointer to buffer for data (512 bytes)
3008
  * +16 = +0x10: dword: pointer to buffer for system operations
2961
  * +16 = +0x10: dword: pointer to buffer for system operations
3009
    (4096 bytes)
2962
    (4096 bytes)
3010
  * +20 = +0x14: ASCIIZ-name of device: case-insensitive, one of
2963
  * +20 = +0x14: ASCIIZ-name of device: case-insensitive, one of
3011
    /rd/1 = /RamDisk/1, /hd/n = /HardDisk/n,
2964
    /rd/1 = /RamDisk/1, /hd/n = /HardDisk/n,
3012
    1<=n<=4 - number of device: 1=IDE0, ..., 4=IDE3.
2965
    1<=n<=4 - number of device: 1=IDE0, ..., 4=IDE3.
3013
    Instead of digits it is allowed, though not recommended for
2966
    Instead of digits it is allowed, though not recommended for
3014
    convenience of transition to future extensions, to use
2967
    convenience of transition to future extensions, to use
3015
    'first','second','third','fourth'.
2968
    'first','second','third','fourth'.
3016
Returned value:
2969
Returned value:
3017
  * for device name /hd/xxx, where xxx is not in the list above:
2970
  * for device name /hd/xxx, where xxx is not in the list above:
3018
    * eax = ebx = 1
2971
    * eax = ebx = 1
3019
  * for invalid device name (except for the previous case):
2972
  * for invalid device name (except for the previous case):
3020
    * eax = 5
2973
    * eax = 5
3021
    * ebx does not change
2974
    * ebx does not change
3022
  * if LBA-access is disabled by subfunction 11 of function 21:
2975
  * if LBA-access is disabled by subfunction 11 of function 21:
3023
    * eax = 2
2976
    * eax = 2
3024
    * ebx destroyed
2977
    * ebx destroyed
3025
  * for ramdisk: attempt to read block outside ramdisk
2978
  * for ramdisk: attempt to read block outside ramdisk
3026
    (18*2*80 blocks) results in
2979
    (18*2*80 blocks) results in
3027
    * eax = 3
2980
    * eax = 3
3028
    * ebx = 0
2981
    * ebx = 0
3029
  * for successful read:
2982
  * for successful read:
3030
    * eax = ebx = 0
2983
    * eax = ebx = 0
3031
Remarks:
2984
Remarks:
3032
  * Block size is 512 bytes; function reads one block.
2985
  * Block size is 512 bytes; function reads one block.
3033
  * Do not depend on returned value, it can be changed
2986
  * Do not depend on returned value, it can be changed
3034
    in future versions.
2987
    in future versions.
3035
  * Function requires that LBA-access to devices is enabled by 
2988
  * Function requires that LBA-access to devices is enabled by
3036
    subfunction 11 of function 21. To check this one can use 
2989
    subfunction 11 of function 21. To check this one can use
3037
    subfunction 11 of function 26.
2990
    subfunction 11 of function 26.
3038
  * LBA-read of floppy is not supported.
2991
  * LBA-read of floppy is not supported.
3039
  * Function reads data on physical hard drive; if for any reason
2992
  * Function reads data on physical hard drive; if for any reason
3040
    data of the concrete partition are required, application must
2993
    data of the concrete partition are required, application must
3041
    define starting sector of this partition (either directly
2994
    define starting sector of this partition (either directly
3042
    through MBR, or from the full structure returned by
2995
    through MBR, or from the full structure returned by
3043
    ïîäôóíêöèåé 11 ôóíêöèè 18).
2996
    ïîäôóíêöèåé 11 ôóíêöèè 18).
3044
  * Function does not check error code of hard disk, so request of
2997
  * Function does not check error code of hard disk, so request of
3045
    nonexisting sector reads something (most probably it will be
2998
    nonexisting sector reads something (most probably it will be
3046
    zeroes, but this is defined by device) and this is considered
2999
    zeroes, but this is defined by device) and this is considered
3047
    as success (eax=0).
3000
    as success (eax=0).
3048
 
3001
 
3049
======================================================================
3002
======================================================================
3050
==== Function 58, subfunction 15 - get information on file system. ===
3003
==== Function 58, subfunction 15 - get information on file system. ===
3051
======================================================================
3004
======================================================================
3052
Parameters:
3005
Parameters:
3053
  * eax = 58 - function number
3006
  * eax = 58 - function number
3054
  * ebx = pointer to the information structure
3007
  * ebx = pointer to the information structure
3055
Format of the information structure:
3008
Format of the information structure:
3056
  * +0: dword: 15 = subfunction number
3009
  * +0: dword: 15 = subfunction number
3057
  * +4: dword: ignored
3010
  * +4: dword: ignored
3058
  * +8: dword: ignored
3011
  * +8: dword: ignored
3059
  * +12 = +0xC: dword: ignored
3012
  * +12 = +0xC: dword: ignored
3060
  * +16 = +0x10: dword: ignored
3013
  * +16 = +0x10: dword: ignored
3061
  * +20 = +0x14: (only second character is checked)
3014
  * +20 = +0x14: (only second character is checked)
3062
    /rd=/RAMDISK or /hd=/HARDDISK
3015
    /rd=/RAMDISK or /hd=/HARDDISK
3063
Returned value:
3016
Returned value:
3064
  * if the second character does not belong to set {'r','R','h','H'}:
3017
  * if the second character does not belong to set {'r','R','h','H'}:
3065
    * eax = 3
3018
    * eax = 3
3066
    * ebx = ecx = dword [fileinfo] = 0
3019
    * ebx = ecx = dword [fileinfo] = 0
3067
  * for ramdisk:
3020
  * for ramdisk:
3068
    * eax = 0 (success)
3021
    * eax = 0 (success)
3069
    * ebx = total number of clusters = 2847
3022
    * ebx = total number of clusters = 2847
3070
    * ecx = number of free clusters
3023
    * ecx = number of free clusters
3071
    * dword [fileinfo] = cluster size = 512
3024
    * dword [fileinfo] = cluster size = 512
3072
  * for hard disk: base and partition are defined by subfunctions
3025
  * for hard disk: base and partition are defined by subfunctions
3073
    7 and 8 of function 21:
3026
    7 and 8 of function 21:
3074
    * eax = 0 (success)
3027
    * eax = 0 (success)
3075
    * ebx = total number of clusters
3028
    * ebx = total number of clusters
3076
    * ecx = number of free clusters
3029
    * ecx = number of free clusters
3077
    * dword [fileinfo] = cluster size (in bytes)
3030
    * dword [fileinfo] = cluster size (in bytes)
3078
Remarks:
3031
Remarks:
3079
  * Be not surprised to strange layout of 4th returned parameter
3032
  * Be not surprised to strange layout of 4th returned parameter
3080
    - when this code was writing, at system calls application got
3033
    - when this code was writing, at system calls application got
3081
    only registers eax,ebx,ecx (from pushad-structure transmitted
3034
    only registers eax,ebx,ecx (from pushad-structure transmitted
3082
    as argument to the system function). Now it is corrected, so,
3035
    as argument to the system function). Now it is corrected, so,
3083
    probably, it is meaningful to return cluster size in edx, while
3036
    probably, it is meaningful to return cluster size in edx, while
3084
    this function is not used yet.
3037
    this function is not used yet.
3085
  * There exists also subfunction 11 of function 18,
3038
  * There exists also subfunction 11 of function 18,
3086
    which returns information on file system. From the full table
3039
    which returns information on file system. From the full table
3087
    of disk subsystem it is possible to deduce cluster size (there
3040
    of disk subsystem it is possible to deduce cluster size (there
3088
    it is stored in sectors) and total number of clusters
3041
    it is stored in sectors) and total number of clusters
3089
    for hard disks.
3042
    for hard disks.
3090
 
3043
 
3091
======================================================================
3044
======================================================================
3092
========== Function 60 - Inter Process Communication (IPC). ==========
3045
========== Function 60 - Inter Process Communication (IPC). ==========
3093
======================================================================
3046
======================================================================
3094
IPC is used for message dispatching from one process/thread to
3047
IPC is used for message dispatching from one process/thread to
3095
another. Previously it is necessary to agree how to interpret
3048
another. Previously it is necessary to agree how to interpret
3096
the concrete message.
3049
the concrete message.
3097
 
3050
 
3098
----------- Subfunction 1 - set the area for IPC receiving -----------
3051
----------- Subfunction 1 - set the area for IPC receiving -----------
3099
Is called by process-receiver.
3052
Is called by process-receiver.
3100
Parameters:
3053
Parameters:
3101
  * eax = 60 - function number
3054
  * eax = 60 - function number
3102
  * ebx = 1 - subfunction number
3055
  * ebx = 1 - subfunction number
3103
  * ecx = pointer to the buffer
3056
  * ecx = pointer to the buffer
3104
  * edx = size of the buffer
3057
  * edx = size of the buffer
3105
Returned value:
3058
Returned value:
3106
  * eax = 0 - always success
3059
  * eax = 0 - always success
3107
Format of IPC-buffer:
3060
Format of IPC-buffer:
3108
  * +0: dword: if nonzero, buffer is considered locked;
3061
  * +0: dword: if nonzero, buffer is considered locked;
3109
    lock/unlock the buffer, when you work with it and need that
3062
    lock/unlock the buffer, when you work with it and need that
3110
    buffer data are not changed from outside (no new messages)
3063
    buffer data are not changed from outside (no new messages)
3111
  * +4: dword: occupied place in the buffer (in bytes)
3064
  * +4: dword: occupied place in the buffer (in bytes)
3112
  * +8: first message
3065
  * +8: first message
3113
  * +8+n: second message
3066
  * +8+n: second message
3114
  * ...
3067
  * ...
3115
Format of a message:
3068
Format of a message:
3116
  * +0: dword: PID of sender
3069
  * +0: dword: PID of sender
3117
  * +4: dword: message length (not including this header)
3070
  * +4: dword: message length (not including this header)
3118
  * +8: n*byte: message data
3071
  * +8: n*byte: message data
3119
 
3072
 
3120
------------------ Subfunction 2 - send IPC message ------------------
3073
------------------ Subfunction 2 - send IPC message ------------------
3121
Is called by process-sender.
3074
Is called by process-sender.
3122
Parameters:
3075
Parameters:
3123
  * eax = 60 - function number
3076
  * eax = 60 - function number
3124
  * ebx = 2 - subfunction number
3077
  * ebx = 2 - subfunction number
3125
  * ecx = PID of receiver
3078
  * ecx = PID of receiver
3126
  * edx = pointer to the message data
3079
  * edx = pointer to the message data
3127
  * esi = message length (in bytes)
3080
  * esi = message length (in bytes)
3128
Returned value:
3081
Returned value:
3129
  * eax = 0 - success
3082
  * eax = 0 - success
3130
  * eax = 1 - the receiver has not defined buffer for IPC messages
3083
  * eax = 1 - the receiver has not defined buffer for IPC messages
3131
    (can be, still have no time,
3084
    (can be, still have no time,
3132
    and can be, this is not right process)
3085
    and can be, this is not right process)
3133
  * eax = 2 - the receiver has blocked IPC-buffer; try to wait a bit
3086
  * eax = 2 - the receiver has blocked IPC-buffer; try to wait a bit
3134
  * eax = 3 - overflow of IPC-buffer of the receiver
3087
  * eax = 3 - overflow of IPC-buffer of the receiver
3135
  * eax = 4 - process/thread with such PID does not exist
3088
  * eax = 4 - process/thread with such PID does not exist
3136
Remarks:
3089
Remarks:
3137
  * Immediately after writing of IPC-message to the buffer the system
3090
  * Immediately after writing of IPC-message to the buffer the system
3138
    sends to the receiver the event with code 7 (see event codes).
3091
    sends to the receiver the event with code 7 (see event codes).
3139
 
3092
 
3140
======================================================================
3093
======================================================================
3141
==== Function 61 - get parameters for the direct graphics access. ====
3094
==== Function 61 - get parameters for the direct graphics access. ====
3142
======================================================================
3095
======================================================================
3143
The data of the graphics screen (the memory area which displays
3096
The data of the graphics screen (the memory area which displays
3144
screen contents) are accessible to a program directly, without
3097
screen contents) are accessible to a program directly, without
3145
any system calls, through the selector gs:
3098
any system calls, through the selector gs:
3146
	mov	eax, [gs:0]
3099
        mov     eax, [gs:0]
3147
places in eax the first dword of the buffer, which contains
3100
places in eax the first dword of the buffer, which contains
3148
information on color of the left upper point (and, possibly, colors
3101
information on color of the left upper point (and, possibly, colors
3149
of several following).
3102
of several following).
3150
	mov	[gs:0], eax
3103
        mov     [gs:0], eax
3151
by work in VESA modes with LFB sets color of the left upper point
3104
by work in VESA modes with LFB sets color of the left upper point
3152
(and, possibly, colors of several following).
3105
(and, possibly, colors of several following).
3153
To interpret the data of graphics screen program needs to know
3106
To interpret the data of graphics screen program needs to know
3154
some parameters, returning by this function.
3107
some parameters, returning by this function.
3155
Remarks:
3108
Remarks:
3156
  * Graphics parameters changes very seldom at work,
3109
  * Graphics parameters changes very seldom at work,
3157
    namely, only in cases, when user works with the application VRR.
3110
    namely, only in cases, when user works with the application VRR.
3158
  * At videomode change the system redraws all windows (event
3111
  * At videomode change the system redraws all windows (event
3159
    with code 1) and redraws the background (event 5).
3112
    with code 1) and redraws the background (event 5).
3160
    Same events occur in other cases too, which meet much more often,
3113
    Same events occur in other cases too, which meet much more often,
3161
    than videomode change.
3114
    than videomode change.
3162
  * By operation in videomodes with LFB the selector gs points to
3115
  * By operation in videomodes with LFB the selector gs points to
3163
    LFB itself, so reading/writing on gs result directly in
3116
    LFB itself, so reading/writing on gs result directly in
3164
    change of screen contents. By operation in videomodes without
3117
    change of screen contents. By operation in videomodes without
3165
    LFB gs points to some data area in the kernel, and all functions
3118
    LFB gs points to some data area in the kernel, and all functions
3166
    of screen output fulfil honesty double operation on writing
3119
    of screen output fulfil honesty double operation on writing
3167
    directly to the screen and writing to this buffer. In result
3120
    directly to the screen and writing to this buffer. In result
3168
    at reading contents of this buffer the results correspond to
3121
    at reading contents of this buffer the results correspond to
3169
    screen contents (with, generally speaking, large color
3122
    screen contents (with, generally speaking, large color
3170
    resolution), and writing is ignored.
3123
    resolution), and writing is ignored.
3171
    One exception is the mode 320*200, for which main loop of the
3124
    One exception is the mode 320*200, for which main loop of the
3172
    system thread updates the screen according to mouse movements.
3125
    system thread updates the screen according to mouse movements.
3173
 
3126
 
3174
------------------------- Screen resolution --------------------------
3127
------------------------- Screen resolution --------------------------
3175
Parameters:
3128
Parameters:
3176
  * eax = 61 - function number
3129
  * eax = 61 - function number
3177
  * ebx = 1 - subfunction number
3130
  * ebx = 1 - subfunction number
3178
Returned value:
3131
Returned value:
3179
  * eax = [resolution on x axis]*65536 + [resolution on y axis]
3132
  * eax = [resolution on x axis]*65536 + [resolution on y axis]
3180
Remarks:
3133
Remarks:
3181
  * One can use function 14 paying attention that
3134
  * One can use function 14 paying attention that
3182
    it returns sizes on 1 pixel less. It is fully equivalent way.
3135
    it returns sizes on 1 pixel less. It is fully equivalent way.
3183
 
3136
 
3184
---------------------- Number of bits per pixel ----------------------
3137
---------------------- Number of bits per pixel ----------------------
3185
Parameters:
3138
Parameters:
3186
  * eax = 61 - function number
3139
  * eax = 61 - function number
3187
  * ebx = 2 - subfunction number
3140
  * ebx = 2 - subfunction number
3188
Returned value:
3141
Returned value:
3189
  * eax = number of bits per pixel (24 or 32)
3142
  * eax = number of bits per pixel (24 or 32)
3190
 
3143
 
3191
-------------------- Number of bytes per scanline --------------------
3144
-------------------- Number of bytes per scanline --------------------
3192
Parameters:
3145
Parameters:
3193
  * eax = 61 - function number
3146
  * eax = 61 - function number
3194
  * ebx = 3 - subfunction number
3147
  * ebx = 3 - subfunction number
3195
Returned value:
3148
Returned value:
3196
  * eax = number of bytes occupied by one scanline
3149
  * eax = number of bytes occupied by one scanline
3197
    (horizontal line on the screen)
3150
    (horizontal line on the screen)
3198
 
3151
 
3199
======================================================================
3152
======================================================================
3200
===== Function 62, subfunction 0 - get version of PCI-interface. =====
3153
===== Function 62, subfunction 0 - get version of PCI-interface. =====
3201
======================================================================
3154
======================================================================
3202
Parameters:
3155
Parameters:
3203
  * eax = 62 - function number
3156
  * eax = 62 - function number
3204
  * bl = 0 - subfunction number
3157
  * bl = 0 - subfunction number
3205
Returned value:
3158
Returned value:
3206
  * eax = -1 - PCI access is disabled; otherwise
3159
  * eax = -1 - PCI access is disabled; otherwise
3207
  * ah.al = version of PCI-interface (ah=version, al=subversion)
3160
  * ah.al = version of PCI-interface (ah=version, al=subversion)
3208
  * high word of eax is zeroed
3161
  * high word of eax is zeroed
3209
Remarks:
3162
Remarks:
3210
  * Previously low-level access to PCI for applications must be
3163
  * Previously low-level access to PCI for applications must be
3211
    enabled by subfunction 12 of function 21.
3164
    enabled by subfunction 12 of function 21.
3212
  * If PCI BIOS is not supported, the value of ax is undefined.
3165
  * If PCI BIOS is not supported, the value of ax is undefined.
3213
 
3166
 
3214
======================================================================
3167
======================================================================
3215
==== Function 62, subfunction 1 - get number of the last PCI-bus. ====
3168
==== Function 62, subfunction 1 - get number of the last PCI-bus. ====
3216
======================================================================
3169
======================================================================
3217
Parameters:
3170
Parameters:
3218
  * eax = 62 - function number
3171
  * eax = 62 - function number
3219
  * bl = 1 - subfunction number
3172
  * bl = 1 - subfunction number
3220
Returned value:
3173
Returned value:
3221
  * eax = -1 - access to PCI is disabled; otherwise
3174
  * eax = -1 - access to PCI is disabled; otherwise
3222
  * al = number of the last PCI-bus; other bytes of eax are destroyed
3175
  * al = number of the last PCI-bus; other bytes of eax are destroyed
3223
Remarks:
3176
Remarks:
3224
  * Previously low-level access to PCI for applications must be
3177
  * Previously low-level access to PCI for applications must be
3225
    enabled by subfunction 12 of function 21.
3178
    enabled by subfunction 12 of function 21.
3226
  * If PCI BIOS is not supported, the value of ax is undefined.
3179
  * If PCI BIOS is not supported, the value of ax is undefined.
3227
 
3180
 
3228
======================================================================
3181
======================================================================
3229
===================== Function 62, subfunction 2 =====================
3182
===================== Function 62, subfunction 2 =====================
3230
===== Get mechanism of addressing to the PCI configuration space. ====
3183
===== Get mechanism of addressing to the PCI configuration space. ====
3231
======================================================================
3184
======================================================================
3232
Parameters:
3185
Parameters:
3233
  * eax = 62 - function number
3186
  * eax = 62 - function number
3234
  * bl = 2 - subfunction number
3187
  * bl = 2 - subfunction number
3235
Returned value:
3188
Returned value:
3236
  * eax = -1 - access to PCI is disabled; otherwise
3189
  * eax = -1 - access to PCI is disabled; otherwise
3237
  * al = mechanism (1 or 2); other bytes of eax are destroyed
3190
  * al = mechanism (1 or 2); other bytes of eax are destroyed
3238
Remarks:
3191
Remarks:
3239
  * Previously low-level access to PCI for applications must be
3192
  * Previously low-level access to PCI for applications must be
3240
    enabled by subfunction 12 of function 21.
3193
    enabled by subfunction 12 of function 21.
3241
  * Addressing mechanism is selected depending on
3194
  * Addressing mechanism is selected depending on
3242
    equipment characteristics.
3195
    equipment characteristics.
3243
  * Subfunctions of read and write work automatically
3196
  * Subfunctions of read and write work automatically
3244
    with the selected mechanism.
3197
    with the selected mechanism.
3245
 
3198
 
3246
======================================================================
3199
======================================================================
3247
======== Function 62, subfunctions 4,5,6 - read PCI-register. ========
3200
======== Function 62, subfunctions 4,5,6 - read PCI-register. ========
3248
======================================================================
3201
======================================================================
3249
Parameters:
3202
Parameters:
3250
  * eax = 62 - function number
3203
  * eax = 62 - function number
3251
  * bl = 4 - read byte
3204
  * bl = 4 - read byte
3252
  * bl = 5 - read word
3205
  * bl = 5 - read word
3253
  * bl = 6 - read dword
3206
  * bl = 6 - read dword
3254
  * bh = number of PCI-bus
3207
  * bh = number of PCI-bus
3255
  * ch = dddddfff, where ddddd = number of the device on the bus,
3208
  * ch = dddddfff, where ddddd = number of the device on the bus,
3256
    fff = function number of device
3209
    fff = function number of device
3257
  * cl = number of register (must be even for bl=5,
3210
  * cl = number of register (must be even for bl=5,
3258
    divisible by 4 for bl=6)
3211
    divisible by 4 for bl=6)
3259
Returned value:
3212
Returned value:
3260
  * eax = -1 - error (access to PCI is disabled or parameters
3213
  * eax = -1 - error (access to PCI is disabled or parameters
3261
    are not supported); otherwise
3214
    are not supported); otherwise
3262
  * al/ax/eax (depending on requested size) contains the data;
3215
  * al/ax/eax (depending on requested size) contains the data;
3263
    the other part of register eax is destroyed
3216
    the other part of register eax is destroyed
3264
Remarks:
3217
Remarks:
3265
  * Previously low-level access to PCI for applications must be
3218
  * Previously low-level access to PCI for applications must be
3266
    enabled by subfunction 12 of function 21.
3219
    enabled by subfunction 12 of function 21.
3267
  * Access mechanism 2 supports only 16 devices on a bus and ignores
3220
  * Access mechanism 2 supports only 16 devices on a bus and ignores
3268
    function number. To get access mechanism use subfunction 2.
3221
    function number. To get access mechanism use subfunction 2.
3269
  * Some registers are standard and exist for all devices, some are
3222
  * Some registers are standard and exist for all devices, some are
3270
    defined by the concrete device. The list of registers of the
3223
    defined by the concrete device. The list of registers of the
3271
    first type can be found e.g. in famous
3224
    first type can be found e.g. in famous
3272
    Interrupt List by Ralf Brown
3225
    Interrupt List by Ralf Brown
3273
    (http://www.pobox.com/~ralf/files.html,
3226
    (http://www.pobox.com/~ralf/files.html,
3274
    ftp://ftp.cs.cmu.edu/afs/cs/user/ralf/pub/);
3227
    ftp://ftp.cs.cmu.edu/afs/cs/user/ralf/pub/);
3275
    registers of the second type must be listed
3228
    registers of the second type must be listed
3276
    in the device documentation.
3229
    in the device documentation.
3277
 
3230
 
3278
======================================================================
3231
======================================================================
3279
====== Function 62, subfunctions 8,9,10 - write to PCI-register. =====
3232
====== Function 62, subfunctions 8,9,10 - write to PCI-register. =====
3280
======================================================================
3233
======================================================================
3281
Parameters:
3234
Parameters:
3282
  * eax = 62 - function number
3235
  * eax = 62 - function number
3283
  * bl = 8 - write byte
3236
  * bl = 8 - write byte
3284
  * bl = 9 - write word
3237
  * bl = 9 - write word
3285
  * bl = 10 - write dword
3238
  * bl = 10 - write dword
3286
  * bh = number of PCI-bus
3239
  * bh = number of PCI-bus
3287
  * ch = dddddfff, where ddddd = number of the device on the bus,
3240
  * ch = dddddfff, where ddddd = number of the device on the bus,
3288
    fff = function number of device
3241
    fff = function number of device
3289
  * cl = number of register (must be even for bl=9,
3242
  * cl = number of register (must be even for bl=9,
3290
    divisible by 4 for bl=10)
3243
    divisible by 4 for bl=10)
3291
  * dl/dx/edx (depending on requested size) contatins
3244
  * dl/dx/edx (depending on requested size) contatins
3292
    the data to write
3245
    the data to write
3293
Returned value:
3246
Returned value:
3294
  * eax = -1 - error (access to PCI is disabled or parameters
3247
  * eax = -1 - error (access to PCI is disabled or parameters
3295
    are not supported)
3248
    are not supported)
3296
  * eax = 0 - success
3249
  * eax = 0 - success
3297
Remarks:
3250
Remarks:
3298
  * Previously low-level access to PCI for applications must be
3251
  * Previously low-level access to PCI for applications must be
3299
    enabled by subfunction 12 of function 21.
3252
    enabled by subfunction 12 of function 21.
3300
  * Access mechanism 2 supports only 16 devices on a bus and ignores
3253
  * Access mechanism 2 supports only 16 devices on a bus and ignores
3301
    function number. To get access mechanism use subfunction 2.
3254
    function number. To get access mechanism use subfunction 2.
3302
  * Some registers are standard and exist for all devices, some are
3255
  * Some registers are standard and exist for all devices, some are
3303
    defined by the concrete device. The list of registers of the
3256
    defined by the concrete device. The list of registers of the
3304
    first type can be found e.g. in famous Interrupt List by
3257
    first type can be found e.g. in famous Interrupt List by
3305
    Ralf Brown; registers of the second type must be listed
3258
    Ralf Brown; registers of the second type must be listed
3306
    in the device documentation.
3259
    in the device documentation.
3307
 
3260
 
3308
======================================================================
3261
======================================================================
3309
============== Function 63 - work with the debug board. ==============
3262
============== Function 63 - work with the debug board. ==============
3310
======================================================================
3263
======================================================================
3311
The debug board is the global system buffer (with the size
3264
The debug board is the global system buffer (with the size
3312
1024 bytes), to which any program can write (generally speaking,
3265
1024 bytes), to which any program can write (generally speaking,
3313
arbitrary) data and from which other program can read these data.
3266
arbitrary) data and from which other program can read these data.
3314
By the agreement written data are text strings interpreted as
3267
By the agreement written data are text strings interpreted as
3315
debug messages on a course of program execution. The kernel in
3268
debug messages on a course of program execution. The kernel in
3316
some situations also writes to the debug board information on
3269
some situations also writes to the debug board information on
3317
execution of some functions; by the agreement kernel messages
3270
execution of some functions; by the agreement kernel messages
3318
begins from the prefix "K : ".
3271
begins from the prefix "K : ".
3319
For view of the debug board the application 'board' was created,
3272
For view of the debug board the application 'board' was created,
3320
which reads data from the buffer and displays them in its window.
3273
which reads data from the buffer and displays them in its window.
3321
'board' interpretes the sequence of codes 13,10 as newline.
3274
'board' interpretes the sequence of codes 13,10 as newline.
3322
A character with null code in an end of line is not necessary,
3275
A character with null code in an end of line is not necessary,
3323
but also does not prevent.
3276
but also does not prevent.
3324
Because debugger has been written, the value of the debug board
3277
Because debugger has been written, the value of the debug board
3325
has decreased, as debugger allows to inspect completely a course of
3278
has decreased, as debugger allows to inspect completely a course of
3326
program execution without any efforts from the direction of program
3279
program execution without any efforts from the direction of program
3327
itself. Nevertheless in some cases the debug board is still useful.
3280
itself. Nevertheless in some cases the debug board is still useful.
3328
 
3281
 
3329
----------------------------- Write byte -----------------------------
3282
----------------------------- Write byte -----------------------------
3330
Parameters:
3283
Parameters:
3331
  * eax = 63 - function number
3284
  * eax = 63 - function number
3332
  * ebx = 1 - subfunction number
3285
  * ebx = 1 - subfunction number
3333
  * cl = data byte
3286
  * cl = data byte
3334
Returned value:
3287
Returned value:
3335
  * function does not return value
3288
  * function does not return value
3336
Remarks:
3289
Remarks:
3337
  * Byte is written to the buffer. Buffer size is 512 bytes.
3290
  * Byte is written to the buffer. Buffer size is 512 bytes.
3338
    At buffer overflow all obtained data are lost.
3291
    At buffer overflow all obtained data are lost.
3339
  * For output to the debug board of more complicated objects
3292
  * For output to the debug board of more complicated objects
3340
    (strings, numbers) it is enough to call this function in cycle.
3293
    (strings, numbers) it is enough to call this function in cycle.
3341
    It is possible not to write the appropriate code manually and use
3294
    It is possible not to write the appropriate code manually and use
3342
    file 'debug.inc', which is included into the distributive.
3295
    file 'debug.inc', which is included into the distributive.
3343
 
3296
 
3344
----------------------------- Read byte ------------------------------
3297
----------------------------- Read byte ------------------------------
3345
Takes away byte from the buffer.
3298
Takes away byte from the buffer.
3346
Parameters:
3299
Parameters:
3347
  * eax = 63 - function number
3300
  * eax = 63 - function number
3348
  * ebx = 2 - subfunction number
3301
  * ebx = 2 - subfunction number
3349
Returned value:
3302
Returned value:
3350
  * eax = ebx = 0 - the buffer is empty
3303
  * eax = ebx = 0 - the buffer is empty
3351
  * eax = byte, ebx = 1 - byte was successfully read
3304
  * eax = byte, ebx = 1 - byte was successfully read
3352
 
3305
 
3353
======================================================================
3306
======================================================================
3354
============== Function 64 - resize application memory. ==============
3307
============== Function 64 - resize application memory. ==============
3355
======================================================================
3308
======================================================================
3356
Parameters:
3309
Parameters:
3357
  * eax = 64 - function number
3310
  * eax = 64 - function number
3358
  * ebx = 1 - unique subfunction
3311
  * ebx = 1 - unique subfunction
3359
  * ecx = new memory size
3312
  * ecx = new memory size
3360
Returned value:
3313
Returned value:
3361
  * eax = 0 - success
3314
  * eax = 0 - success
3362
  * eax = 1 - not enough memory
3315
  * eax = 1 - not enough memory
3363
Remarks:
3316
Remarks:
3364
  * There is another way to dynamically allocate/free memory -
3317
  * There is another way to dynamically allocate/free memory -
3365
    subfunctions 11, 12, 13 of function 68.
3318
    subfunctions 11, 12, 13 of function 68.
3366
  * The function cannot be used together with 68.11, 68.12, 68.13.
3319
  * The function cannot be used together with 68.11, 68.12, 68.13.
3367
    The function call will be ignored after creation of process heap
3320
    The function call will be ignored after creation of process heap
3368
    with function 68.11.
3321
    with function 68.11.
3369
 
3322
 
3370
======================================================================
3323
======================================================================
3371
======== Function 65 - draw image with palette in the window. ========
3324
======== Function 65 - draw image with palette in the window. ========
3372
======================================================================
3325
======================================================================
3373
Parameters:
3326
Parameters:
3374
  * eax = 65 - function number
3327
  * eax = 65 - function number
3375
  * ebx = pointer to the image
3328
  * ebx = pointer to the image
3376
  * ecx = [size on axis x]*65536 + [size on axis y]
3329
  * ecx = [size on axis x]*65536 + [size on axis y]
3377
  * edx = [coordinate on axis x]*65536 + [coordinate on axis y]
3330
  * edx = [coordinate on axis x]*65536 + [coordinate on axis y]
3378
  * esi = number of bits per pixel, must be 8, 24 or 32
3331
  * esi = number of bits per pixel, must be 1,2,4,8,15,16,24 or 32
3379
  * edi = pointer to palette (256 colors 0x00RRGGBB);
3332
  * edi = pointer to palette (2 to the power esi colors 0x00RRGGBB);
3380
          ignored when esi = 24 and 32
3333
          ignored when esi > 8
3381
  * ebp = offset of next row data relative to previous row data
3334
  * ebp = offset of next row data relative to previous row data
3382
Returned value:
3335
Returned value:
3383
  * function does not return value
3336
  * function does not return value
3384
Remarks:
3337
Remarks:
3385
  * Coordinates of the image are coordinates of the upper left corner
3338
  * Coordinates of the image are coordinates of the upper left corner
3386
    of the image relative to the window.
3339
    of the image relative to the window.
3387
  * Size of the image in bytes is xsize*ysize.
3340
  * Format of image with 1 bit per pixel: each byte of image
-
 
3341
    (possibly excluding last bytes in rows), contains information on
-
 
3342
    the color of 8 pixels, MSB corresponds to first pixel.
-
 
3343
  * Format of image with 2 bits per pixel: each byte of image
-
 
3344
    (possibly excluding last bytes in rows), contains information on
-
 
3345
    the color of 4 pixels, two MSBs correspond to first pixel.
-
 
3346
  * Format of image with 4 bits per pixel: each byte of image
-
 
3347
    excluding last bytes in rows (if width is odd) contains
-
 
3348
    information on the color of 2 pixels, high-order tetrad
-
 
3349
    corresponds to first pixel.
-
 
3350
  * Format of image with 8 bits per pixel: each byte of image is
3388
  * Each byte of image is index in the palette.
3351
    index in the palette.
3389
  * If the image uses less than 256 colors, palette size may be
3352
  * Format of image with 15 bits per pixel: the color of each pixel
-
 
3353
    is coded as (bit representation) 0RRRRRGGGGGBBBBB - 5 bits per
3390
    less than 256 too.
3354
    each color.
-
 
3355
  * Format of image with 16 bits per pixel: the color of each pixel
-
 
3356
    is coded as RRRRRGGGGGGBBBBB (5+6+5).
-
 
3357
  * Format of image with 24 bits per pixel: the color of each pixel
-
 
3358
    is coded as 3 bytes - sequentially blue, green, red components.
-
 
3359
  * Format of image with 32 bits per pixel: similar to 24, but
-
 
3360
    one additional ignored byte is present.
3391
  * The call to function 7 is equivalent to call to this function
3361
  * The call to function 7 is equivalent to call to this function
3392
    with esi=24, ebp=0.
3362
    with esi=24, ebp=0.
3393
 
3363
 
3394
======================================================================
3364
======================================================================
3395
================== Function 66 - work with keyboard. =================
3365
================== Function 66 - work with keyboard. =================
3396
======================================================================
3366
======================================================================
3397
The input mode influences results of reading keys by function 2.
3367
The input mode influences results of reading keys by function 2.
3398
When a program loads, ASCII input mode is set for it.
3368
When a program loads, ASCII input mode is set for it.
3399
 
3369
 
3400
-------------- Subfunction 1 - set keyboard input mode. --------------
3370
-------------- Subfunction 1 - set keyboard input mode. --------------
3401
Parameters:
3371
Parameters:
3402
  * eax = 66 - function number
3372
  * eax = 66 - function number
3403
  * ebx = 1 - subfunction number
3373
  * ebx = 1 - subfunction number
3404
  * ecx = mode:
3374
  * ecx = mode:
3405
    * 0 = normal (ASCII-characters)
3375
    * 0 = normal (ASCII-characters)
3406
    * 1 = scancodes
3376
    * 1 = scancodes
3407
Returned value:
3377
Returned value:
3408
  * function does not return value
3378
  * function does not return value
3409
 
3379
 
3410
-------------- Subfunction 2 - get keyboard input mode. --------------
3380
-------------- Subfunction 2 - get keyboard input mode. --------------
3411
Parameters:
3381
Parameters:
3412
  * eax = 66 - function number
3382
  * eax = 66 - function number
3413
  * ebx = 2 - subfunction number
3383
  * ebx = 2 - subfunction number
3414
Returned value:
3384
Returned value:
3415
  * eax = current mode
3385
  * eax = current mode
3416
 
3386
 
3417
------------ Subfunction 3 - get status of control keys. -------------
3387
------------ Subfunction 3 - get status of control keys. -------------
3418
Parameters:
3388
Parameters:
3419
  * eax = 66 - function number
3389
  * eax = 66 - function number
3420
  * ebx = 3 - subfunction number
3390
  * ebx = 3 - subfunction number
3421
Returned value:
3391
Returned value:
3422
  * eax = bit mask:
3392
  * eax = bit mask:
3423
  * bit 0 (mask 1): left Shift is pressed
3393
  * bit 0 (mask 1): left Shift is pressed
3424
  * bit 1 (mask 2): right Shift is pressed
3394
  * bit 1 (mask 2): right Shift is pressed
3425
  * bit 2 (mask 4): left Ctrl is pressed
3395
  * bit 2 (mask 4): left Ctrl is pressed
3426
  * bit 3 (mask 8): right Ctrl is pressed
3396
  * bit 3 (mask 8): right Ctrl is pressed
3427
  * bit 4 (mask 0x10): left Alt is pressed
3397
  * bit 4 (mask 0x10): left Alt is pressed
3428
  * bit 5 (mask 0x20): right Alt is pressed
3398
  * bit 5 (mask 0x20): right Alt is pressed
3429
  * bit 6 (mask 0x40): CapsLock is on
3399
  * bit 6 (mask 0x40): CapsLock is on
3430
  * bit 7 (mask 0x80): NumLock is on
3400
  * bit 7 (mask 0x80): NumLock is on
3431
  * bit 8 (mask 0x100): ScrollLock is on
3401
  * bit 8 (mask 0x100): ScrollLock is on
3432
  * other bits are cleared
3402
  * other bits are cleared
3433
 
3403
 
3434
-------------- Subfunction 4 - set system-wide hotkey. ---------------
3404
-------------- Subfunction 4 - set system-wide hotkey. ---------------
3435
When hotkey is pressed, the system notifies only those applications,
3405
When hotkey is pressed, the system notifies only those applications,
3436
which have installed it; the active application (which receives
3406
which have installed it; the active application (which receives
3437
all normal input) does not receive such keys.
3407
all normal input) does not receive such keys.
3438
The notification consists in sending event with the code 2.
3408
The notification consists in sending event with the code 2.
3439
Reading hotkey is the same as reading normal key - by function 2.
3409
Reading hotkey is the same as reading normal key - by function 2.
3440
Parameters:
3410
Parameters:
3441
  * eax = 66 - function number
3411
  * eax = 66 - function number
3442
  * ebx = 4 - subfunction number
3412
  * ebx = 4 - subfunction number
3443
  * cl determines key scancode;
3413
  * cl determines key scancode;
3444
    use cl=0 to give combinations such as Ctrl+Shift
3414
    use cl=0 to give combinations such as Ctrl+Shift
3445
  * edx = 0xXYZ determines possible states of control keys:
3415
  * edx = 0xXYZ determines possible states of control keys:
3446
    * Z (low 4 bits) determines state of LShift and RShift:
3416
    * Z (low 4 bits) determines state of LShift and RShift:
3447
      * 0 = no key must be pressed;
3417
      * 0 = no key must be pressed;
3448
      * 1 = exactly one key must be pressed;
3418
      * 1 = exactly one key must be pressed;
3449
      * 2 = both keys must be pressed;
3419
      * 2 = both keys must be pressed;
3450
      * 3 = must be pressed LShift, but not RShift;
3420
      * 3 = must be pressed LShift, but not RShift;
3451
      * 4 = must be pressed RShift, but not LShift
3421
      * 4 = must be pressed RShift, but not LShift
3452
    * Y - similar for LCtrl and RCtrl;
3422
    * Y - similar for LCtrl and RCtrl;
3453
    * X - similar for LAlt and RAlt
3423
    * X - similar for LAlt and RAlt
3454
Returned value:
3424
Returned value:
3455
  * eax=0 - success
3425
  * eax=0 - success
3456
  * eax=1 - too mant hotkeys (maximum 256 are allowed)
3426
  * eax=1 - too mant hotkeys (maximum 256 are allowed)
3457
Remarks:
3427
Remarks:
3458
  * Hotkey can work either at pressing or at release. Release
3428
  * Hotkey can work either at pressing or at release. Release
3459
    scancode of a key is more on 128 than pressing scancode
3429
    scancode of a key is more on 128 than pressing scancode
3460
    (i.e. high bit is set).
3430
    (i.e. high bit is set).
3461
  * Several applications can set the same combination;
3431
  * Several applications can set the same combination;
3462
    all such applications will be informed on pressing
3432
    all such applications will be informed on pressing
3463
    such combination.
3433
    such combination.
3464
 
3434
 
3465
-------------- Subfunction 5 - delete installed hotkey. --------------
3435
-------------- Subfunction 5 - delete installed hotkey. --------------
3466
Parameters:
3436
Parameters:
3467
  * eax = 66 - function number
3437
  * eax = 66 - function number
3468
  * ebx = 5 - subfunction number
3438
  * ebx = 5 - subfunction number
3469
  * cl = scancode of key and edx = 0xXYZ the same as in subfunction 4
3439
  * cl = scancode of key and edx = 0xXYZ the same as in subfunction 4
3470
Returned value:
3440
Returned value:
3471
  * eax = 0 - success
3441
  * eax = 0 - success
3472
  * eax = 1 - there is no such hotkey
3442
  * eax = 1 - there is no such hotkey
3473
Remarks:
3443
Remarks:
3474
  * When a process/thread terminates, all hotkey installed by it are
3444
  * When a process/thread terminates, all hotkey installed by it are
3475
    deleted.
3445
    deleted.
3476
  * The call to this subfunction does not affect other applications.
3446
  * The call to this subfunction does not affect other applications.
3477
    If other application has defined the same combination, it will
3447
    If other application has defined the same combination, it will
3478
    still receive notices.
3448
    still receive notices.
3479
 
3449
 
3480
======================================================================
3450
======================================================================
3481
========= Function 67 - change position/sizes of the window. =========
3451
========= Function 67 - change position/sizes of the window. =========
3482
======================================================================
3452
======================================================================
3483
Parameters:
3453
Parameters:
3484
  * eax = 67 - function number
3454
  * eax = 67 - function number
3485
  * ebx = new x-coordinate of the window
3455
  * ebx = new x-coordinate of the window
3486
  * ecx = new y-coordinate of the window
3456
  * ecx = new y-coordinate of the window
3487
  * edx = new x-size of the window
3457
  * edx = new x-size of the window
3488
  * esi = new y-size of the window
3458
  * esi = new y-size of the window
3489
Returned value:
3459
Returned value:
3490
  * function does not return value
3460
  * function does not return value
3491
Remarks:
3461
Remarks:
3492
  * The value -1 for a parameter means "do not change"; e.g. to move
3462
  * The value -1 for a parameter means "do not change"; e.g. to move
3493
    the window without resizing it is possible to specify edx=esi=-1.
3463
    the window without resizing it is possible to specify edx=esi=-1.
3494
  * Previously the window must be defined by function 0.
3464
  * Previously the window must be defined by function 0.
3495
    It sets initial coordinates and sizes of the window.
3465
    It sets initial coordinates and sizes of the window.
3496
  * Sizes of the window are understood in sense of function 0,
3466
  * Sizes of the window are understood in sense of function 0,
3497
    that is one pixel less than real sizes.
3467
    that is one pixel less than real sizes.
3498
  * The function call for maximized windows is simply ignored.
3468
  * The function call for maximized windows is simply ignored.
3499
  * For windows of appropriate styles position and/or sizes can be
3469
  * For windows of appropriate styles position and/or sizes can be
3500
    changed by user; current position and sizes can be obtained by
3470
    changed by user; current position and sizes can be obtained by
3501
    call to function 9.
3471
    call to function 9.
3502
  * The function sends to the window redraw event (with the code 1).
3472
  * The function sends to the window redraw event (with the code 1).
3503
 
3473
 
3504
======================================================================
3474
======================================================================
3505
====== Function 68, subfunction 0 - get the task switch counter. =====
3475
====== Function 68, subfunction 0 - get the task switch counter. =====
3506
======================================================================
3476
======================================================================
3507
Parameters:
3477
Parameters:
3508
  * eax = 68 - function number
3478
  * eax = 68 - function number
3509
  * ebx = 0 - subfunction number
3479
  * ebx = 0 - subfunction number
3510
Returned value:
3480
Returned value:
3511
  * eax = number of task switches from the system booting
3481
  * eax = number of task switches from the system booting
3512
    (modulo 2^32)
3482
    (modulo 2^32)
3513
 
3483
 
3514
======================================================================
3484
======================================================================
3515
======= Function 68, subfunction 1 - switch to the next thread. ======
3485
======= Function 68, subfunction 1 - switch to the next thread. ======
3516
======================================================================
3486
======================================================================
3517
The function completes the current time slice allocated to the
3487
The function completes the current time slice allocated to the
3518
thread and switches to the next. (Which thread in which process
3488
thread and switches to the next. (Which thread in which process
3519
will be next, is unpredictable). Later, when execution queue
3489
will be next, is unpredictable). Later, when execution queue
3520
will reach the current thread, execution will be continued.
3490
will reach the current thread, execution will be continued.
3521
Parameters:
3491
Parameters:
3522
  * eax = 68 - function number
3492
  * eax = 68 - function number
3523
  * ebx = 1 - subfunction number
3493
  * ebx = 1 - subfunction number
3524
Returned value:
3494
Returned value:
3525
  * function does not return value
3495
  * function does not return value
3526
 
3496
 
3527
======================================================================
3497
======================================================================
3528
============= Function 68, subfunction 2 - cache + rdpmc. ============
3498
============= Function 68, subfunction 2 - cache + rdpmc. ============
3529
======================================================================
3499
======================================================================
3530
Parameters:
3500
Parameters:
3531
  * eax = 68 - function number
3501
  * eax = 68 - function number
3532
  * ebx = 2 - subfunction number
3502
  * ebx = 2 - subfunction number
3533
  * ecx = required action:
3503
  * ecx = required action:
3534
    * ecx = 0 - enable instruction 'rdpmc'
3504
    * ecx = 0 - enable instruction 'rdpmc'
3535
      (ReaD Performance-Monitoring Counters) for applications
3505
      (ReaD Performance-Monitoring Counters) for applications
3536
    * ecx = 1 - find out whether cache is disabled/enabled
3506
    * ecx = 1 - find out whether cache is disabled/enabled
3537
    * ecx = 2 - enable cache
3507
    * ecx = 2 - enable cache
3538
    * ecx = 3 - disable cache
3508
    * ecx = 3 - disable cache
3539
Returned value:
3509
Returned value:
3540
  * for ecx=0:
3510
  * for ecx=0:
3541
    * eax = the value of cr4
3511
    * eax = the value of cr4
3542
  * for ecx=1:
3512
  * for ecx=1:
3543
    * eax = (cr0 and 0x60000000):
3513
    * eax = (cr0 and 0x60000000):
3544
    * eax = 0 - cache is on
3514
    * eax = 0 - cache is on
3545
    * eax <> 0 - cache is off
3515
    * eax <> 0 - cache is off
3546
  * for ecx=2 and ecx=3:
3516
  * for ecx=2 and ecx=3:
3547
    * function does not return value
3517
    * function does not return value
3548
 
3518
 
3549
======================================================================
3519
======================================================================
3550
=========== Function 68, subfunction 3 - read MSR-register. ==========
3520
=========== Function 68, subfunction 3 - read MSR-register. ==========
3551
======================================================================
3521
======================================================================
3552
MSR = Model Specific Register; the complete list of MSR-registers
3522
MSR = Model Specific Register; the complete list of MSR-registers
3553
of a processor is included to the documentation on it (for example,
3523
of a processor is included to the documentation on it (for example,
3554
IA-32 Intel Architecture Software Developer's Manual,
3524
IA-32 Intel Architecture Software Developer's Manual,
3555
Volume 3, Appendix B); each processor family has its own subset
3525
Volume 3, Appendix B); each processor family has its own subset
3556
of the MSR-registers.
3526
of the MSR-registers.
3557
Parameters:
3527
Parameters:
3558
  * eax = 68 - function number
3528
  * eax = 68 - function number
3559
  * ebx = 3 - subfunction number
3529
  * ebx = 3 - subfunction number
3560
  * ecx is ignored
3530
  * ecx is ignored
3561
  * edx = MSR address
3531
  * edx = MSR address
3562
Returned value:
3532
Returned value:
3563
  * ebx:eax = high:low dword of the result
3533
  * ebx:eax = high:low dword of the result
3564
Remarks:
3534
Remarks:
3565
  * If ecx contains nonexistent or not implemented for this processor
3535
  * If ecx contains nonexistent or not implemented for this processor
3566
    MSR, processor will generate an exception in the kernel, which
3536
    MSR, processor will generate an exception in the kernel, which
3567
    will kill the thread.
3537
    will kill the thread.
3568
  * Previously it is necessary to check, whether MSRs are supported
3538
  * Previously it is necessary to check, whether MSRs are supported
3569
    as a whole, with the instruction 'cpuid'. Otherwise processor
3539
    as a whole, with the instruction 'cpuid'. Otherwise processor
3570
    will generate other exception in the kernel, which will anyway
3540
    will generate other exception in the kernel, which will anyway
3571
    kill the thread.
3541
    kill the thread.
3572
 
3542
 
3573
======================================================================
3543
======================================================================
3574
========= Function 68, subfunction 4 - write to MSR-register. ========
3544
========= Function 68, subfunction 4 - write to MSR-register. ========
3575
======================================================================
3545
======================================================================
3576
MSR = Model Specific Register; the complete list of MSR-registers
3546
MSR = Model Specific Register; the complete list of MSR-registers
3577
of a processor is included to the documentation on it (for example,
3547
of a processor is included to the documentation on it (for example,
3578
IA-32 Intel Architecture Software Developer's Manual,
3548
IA-32 Intel Architecture Software Developer's Manual,
3579
Volume 3, Appendix B); each processor family has its own subset
3549
Volume 3, Appendix B); each processor family has its own subset
3580
of the MSR-registers.
3550
of the MSR-registers.
3581
Parameters:
3551
Parameters:
3582
  * eax = 68 - function number
3552
  * eax = 68 - function number
3583
  * ebx = 4 - subfunction number
3553
  * ebx = 4 - subfunction number
3584
  * ecx is ignored
3554
  * ecx is ignored
3585
  * edx = MSR address
3555
  * edx = MSR address
3586
  * esi:edi = high:low dword
3556
  * esi:edi = high:low dword
3587
Returned value:
3557
Returned value:
3588
  * function does not return value
3558
  * function does not return value
3589
Remarks:
3559
Remarks:
3590
  * If ecx contains nonexistent or not implemented for this processor
3560
  * If ecx contains nonexistent or not implemented for this processor
3591
    MSR, processor will generate an exception in the kernel, which
3561
    MSR, processor will generate an exception in the kernel, which
3592
    will kill the thread.
3562
    will kill the thread.
3593
  * Previously it is necessary to check, whether MSRs are supported
3563
  * Previously it is necessary to check, whether MSRs are supported
3594
    as a whole, with the instruction 'cpuid'. Otherwise processor
3564
    as a whole, with the instruction 'cpuid'. Otherwise processor
3595
    will generate other exception in the kernel, which will anyway
3565
    will generate other exception in the kernel, which will anyway
3596
    kill the thread.
3566
    kill the thread.
3597
 
3567
 
3598
======================================================================
3568
======================================================================
3599
======= Function 68, subfunction 11 - initialize process heap. =======
3569
======= Function 68, subfunction 11 - initialize process heap. =======
3600
======================================================================
3570
======================================================================
3601
Parameters:
3571
Parameters:
3602
  * eax = 68 - function number
3572
  * eax = 68 - function number
3603
  * ebx = 11 - subfunction number
3573
  * ebx = 11 - subfunction number
3604
Returned value:
3574
Returned value:
3605
  * eax = 0 - failed
3575
  * eax = 0 - failed
3606
  * otherwise size of created heap
3576
  * otherwise size of created heap
3607
Remarks:
3577
Remarks:
3608
  * The function call initializes heap, from which one can in future
3578
  * The function call initializes heap, from which one can in future
3609
    allocate and free memory blocks with subfunctions 12 and 13.
3579
    allocate and free memory blocks with subfunctions 12 and 13.
3610
    Heap size is equal to total amount of free application memory.
3580
    Heap size is equal to total amount of free application memory.
3611
  * The second function call from the same process results in
3581
  * The second function call from the same process results in
3612
    returning the size of the existing heap.
3582
    returning the size of the existing heap.
3613
  * After creation of the heap calls to function 64 will be ignored.
3583
  * After creation of the heap calls to function 64 will be ignored.
3614
 
3584
 
3615
======================================================================
3585
======================================================================
3616
======== Function 68, subfunction 12 - allocate memory block. ========
3586
======== Function 68, subfunction 12 - allocate memory block. ========
3617
======================================================================
3587
======================================================================
3618
Parameters:
3588
Parameters:
3619
  * eax = 68 - function number
3589
  * eax = 68 - function number
3620
  * ebx = 12 - subfunction number
3590
  * ebx = 12 - subfunction number
3621
  * ecx = required size in bytes
3591
  * ecx = required size in bytes
3622
Returned value:
3592
Returned value:
3623
  * eax = pointer to the allocated block
3593
  * eax = pointer to the allocated block
3624
Remarks:
3594
Remarks:
3625
  * Before this call one must initialize process heap by call to
3595
  * Before this call one must initialize process heap by call to
3626
    subfunction 11.
3596
    subfunction 11.
3627
  * The function allocates an integer number of pages (4 Kb) in such
3597
  * The function allocates an integer number of pages (4 Kb) in such
3628
    way that the real size of allocated block is more than or equal to
3598
    way that the real size of allocated block is more than or equal to
3629
    requested size.
3599
    requested size.
3630
 
3600
 
3631
======================================================================
3601
======================================================================
3632
========== Function 68, subfunction 13 - free memory block. ==========
3602
========== Function 68, subfunction 13 - free memory block. ==========
3633
======================================================================
3603
======================================================================
3634
Parameters:
3604
Parameters:
3635
  * eax = 68 - function number
3605
  * eax = 68 - function number
3636
  * ebx = 13 - subfunction number
3606
  * ebx = 13 - subfunction number
3637
  * ecx = pointer to the memory block
3607
  * ecx = pointer to the memory block
3638
Returned value:
3608
Returned value:
3639
  * eax = 1 - success
3609
  * eax = 1 - success
3640
  * eax = 0 - failed
3610
  * eax = 0 - failed
3641
Remarks:
3611
Remarks:
3642
  * The memory block must have been allocated by subfunction 12
3612
  * The memory block must have been allocated by subfunction 12
3643
    or subfunction 20.
3613
    or subfunction 20.
3644
 
3614
 
3645
======================================================================
3615
======================================================================
3646
======== Function 68, subfunction 14 - wait for driver notify. =======
3616
===================== Function 68, subfunction 14 ====================
-
 
3617
====== Waiting delivering of signal from another program/driver ======
3647
======================================================================
3618
======================================================================
3648
Parameters:
3619
Parameters:
3649
  * eax = 68 - function number
3620
  * eax = 68 - function number
3650
  * ebx = 14 - subfunction number
3621
  * ebx = 14 - subfunction number
3651
  * ecx = pointer to the buffer for information (8 bytes)
3622
  * ecx = pointer to the buffer for information (24 bytes)
3652
Returned value:
3623
Returned value:
3653
  * buffer pointed to by ecx contains the following information:
3624
  * buffer pointed to by ecx contains the following information:
3654
    * +0: dword: constant EV_INTR = 1
3625
    * +0: dword: identifier for underlying data of signal
3655
    * +4: dword: driver data
-
 
3656
Remarks:
-
 
3657
  * The current implementation at wait time uses "heavy" operations
3626
    * +4: data of signal (20 bytes), format of which is defining by
3658
    of task switch.
3627
          first dword
3659
 
3628
 
3660
======================================================================
3629
======================================================================
3661
====== Function 68, subfunction 15 - set FPU exception handler. ======
3630
====== Function 68, subfunction 15 - set FPU exception handler. ======
3662
======================================================================
3631
======================================================================
3663
Parameters:
-
 
3664
  * eax = 68 - function number
3632
Deleted (in current implementation only 0 is returned).
3665
  * ebx = 15 - subfunction number
3633
Using subfunctions 24, 25 is true.
3666
  * ecx = address of the new exception handler
-
 
3667
Returned value:
-
 
3668
  * eax = address of the old exception handler (0, if it was not set)
-
 
3669
 
3634
 
3670
======================================================================
3635
======================================================================
3671
============= Function 68, subfunction 16 - load driver. =============
3636
============= Function 68, subfunction 16 - load driver. =============
3672
======================================================================
3637
======================================================================
3673
Parameters:
3638
Parameters:
3674
  * eax = 68 - function number
3639
  * eax = 68 - function number
3675
  * ebx = 16 - subfunction number
3640
  * ebx = 16 - subfunction number
3676
  * ecx = pointer to ASCIIZ-string with driver name
3641
  * ecx = pointer to ASCIIZ-string with driver name
3677
Returned value:
3642
Returned value:
3678
  * eax = 0 - failed
3643
  * eax = 0 - failed
3679
  * otherwise eax = driver handle
3644
  * otherwise eax = driver handle
3680
Remarks:
3645
Remarks:
3681
  * If the driver was not loaded yet, it is loaded;
3646
  * If the driver was not loaded yet, it is loaded;
3682
    if the driver was loaded yet, nothing happens.
3647
    if the driver was loaded yet, nothing happens.
3683
  * Driver name is case-sensitive.
3648
  * Driver name is case-sensitive.
3684
    Maximum length of the name is 16 characters, including
3649
    Maximum length of the name is 16 characters, including
3685
    terminating null character, the rest is ignored.
3650
    terminating null character, the rest is ignored.
3686
  * Driver ABC is loaded from file /rd/1/drivers/ABC.obj.
3651
  * Driver ABC is loaded from file /rd/1/drivers/ABC.obj.
3687
 
3652
 
3688
======================================================================
3653
======================================================================
3689
============ Function 68, subfunction 17 - driver control. ===========
3654
============ Function 68, subfunction 17 - driver control. ===========
3690
======================================================================
3655
======================================================================
3691
Parameters:
3656
Parameters:
3692
  * eax = 68 - function number
3657
  * eax = 68 - function number
3693
  * ebx = 17 - subfunction number
3658
  * ebx = 17 - subfunction number
3694
  * ecx = pointer to the control structure:
3659
  * ecx = pointer to the control structure:
3695
    * +0: dword: handle of driver
3660
    * +0: dword: handle of driver
3696
    * +4: dword: code of driver function
3661
    * +4: dword: code of driver function
3697
    * +8: dword: pointer to input data
3662
    * +8: dword: pointer to input data
3698
    * +12 = +0xC: dword: size of input data
3663
    * +12 = +0xC: dword: size of input data
3699
    * +16 = +0x10: dword: pointer to output data
3664
    * +16 = +0x10: dword: pointer to output data
3700
    * +20 = +0x14: dword: size of output data
3665
    * +20 = +0x14: dword: size of output data
3701
Returned value:
3666
Returned value:
3702
  * eax = determined by driver
3667
  * eax =  error code
-
 
3668
      0  - successful call
-
 
3669
     -1  - any error.
-
 
3670
     -2, -3, -4, etc. reserved for kernel error codes
-
 
3671
      1, 2, 3, etc    driver specific error codes
3703
Remarks:
3672
Remarks:
3704
  * Function codes and the structure of input/output data
3673
  * Function codes and the structure of input/output data
3705
    are defined by driver.
3674
    are defined by driver.
3706
  * Previously one must obtain driver handle by subfunction 16.
3675
  * Previously one must obtain driver handle by subfunction 16.
3707
 
3676
 
3708
======================================================================
3677
======================================================================
3709
====== Function 68, subfunction 18 - set SSE exception handler. ======
3678
====== Function 68, subfunction 18 - set SSE exception handler. ======
3710
======================================================================
3679
======================================================================
3711
Parameters:
-
 
3712
  * eax = 68 - function number
3680
Deleted (in current implementation only 0 is returned).
3713
  * ebx = 15 - subfunction number
3681
Using subfunctions 24, 25 is true.
3714
  * ecx = address of the new exception handler
-
 
3715
Returned value:
-
 
3716
  * eax = address of the old exception handler (0, if it was not set)
-
 
3717
 
3682
 
3718
======================================================================
3683
======================================================================
3719
=============== Function 68, subfunction 19 - load DLL. ==============
3684
=============== Function 68, subfunction 19 - load DLL. ==============
3720
======================================================================
3685
======================================================================
3721
Parameters:
3686
Parameters:
3722
  * eax = 68 - function number
3687
  * eax = 68 - function number
3723
  * ebx = 19 - subfunction number
3688
  * ebx = 19 - subfunction number
3724
  * ecx = pointer to ASCIIZ-string with the full path to DLL
3689
  * ecx = pointer to ASCIIZ-string with the full path to DLL
3725
Returned value:
3690
Returned value:
3726
  * eax = 0 - failed
3691
  * eax = 0 - failed
3727
  * otherwise eax = pointer to DLL export table
3692
  * otherwise eax = pointer to DLL export table
3728
Remarks:
3693
Remarks:
3729
  * Export table is an array of structures of 2 dword's, terminated
3694
  * Export table is an array of structures of 2 dword's, terminated
3730
    by zero. The first dword in structure points to function name,
3695
    by zero. The first dword in structure points to function name,
3731
    the second dword contains address of function.
3696
    the second dword contains address of function.
3732
 
3697
 
3733
======================================================================
3698
======================================================================
3734
======= Function 68, subfunction 20 - reallocate memory block. =======
3699
======= Function 68, subfunction 20 - reallocate memory block. =======
3735
======================================================================
3700
======================================================================
3736
Parameters:
3701
Parameters:
3737
  * eax = 68 - function number
3702
  * eax = 68 - function number
3738
  * ebx = 20 - subfunction number
3703
  * ebx = 20 - subfunction number
3739
  * ecx = new size in bytes
3704
  * ecx = new size in bytes
3740
  * edx = pointer to already allocated block
3705
  * edx = pointer to already allocated block
3741
Returned value:
3706
Returned value:
3742
  * eax = pointer to the reallocated block, 0 = error
3707
  * eax = pointer to the reallocated block, 0 = error
3743
Remarks:
3708
Remarks:
3744
  * Before this call one must initialize process heap by call to
3709
  * Before this call one must initialize process heap by call to
3745
    subfunction 11.
3710
    subfunction 11.
3746
  * The function allocates an integer number of pages (4 Kb) in such
3711
  * The function allocates an integer number of pages (4 Kb) in such
3747
    way that the real size of allocated block is more than or equal to
3712
    way that the real size of allocated block is more than or equal to
3748
    requested size.
3713
    requested size.
3749
  * If edx=0, the function call is equivalent to memory allocation
3714
  * If edx=0, the function call is equivalent to memory allocation
3750
    with subfunction 12. Otherwise the block at edx
3715
    with subfunction 12. Otherwise the block at edx
3751
    must be allocated earlier with subfunction 12 or this subfunction.
3716
    must be allocated earlier with subfunction 12 or this subfunction.
3752
  * If ecx=0, the function frees memory block at edx and returns 0.
3717
  * If ecx=0, the function frees memory block at edx and returns 0.
3753
  * The contents of the block are unchanged up to the shorter of
3718
  * The contents of the block are unchanged up to the shorter of
3754
    the new and old sizes.
3719
    the new and old sizes.
3755
 
3720
 
3756
======================================================================
3721
======================================================================
-
 
3722
====== Function 68, subfunction 24 - set new exceptions handler ======
-
 
3723
======================================================================
-
 
3724
Parameters:
-
 
3725
  * eax = 68 - function number
-
 
3726
  * ebx = 24 - subfunction number
-
 
3727
  * ecx = address of the new exception handler
-
 
3728
  * edx = the mask of processing exceptions
-
 
3729
Returned value:
-
 
3730
  * eax = address of the old exception handler (0, if it was not set)
-
 
3731
  * ebx = the old mask of exception handler
-
 
3732
Remarks:
-
 
3733
  * Bit number in mask of exceptions is correspond to exception number
-
 
3734
    by CPU-specification (Intel-PC). For example, FPU-exception have
-
 
3735
    number 16 (#MF), and SSE-exception - 19 (#XF)
-
 
3736
  * The current implementation ignore the inquiry for hook of 7
-
 
3737
    exception - system process #NM by one's own.
-
 
3738
  * User handler get exception number in stack parameter. So, correct
-
 
3739
    exit from handler is: RET 4. Return from handler is to the same
-
 
3740
    instruction, that was cause the exception
-
 
3741
  * When control is transfering to user handler, corresponding bit in
-
 
3742
    exception mask is clearing. Rising this exception in consequence
-
 
3743
    - reduce to default-handling. Exactly: terminating the application,
-
 
3744
    or suspending with debug-notify to owner.
-
 
3745
  * After completion of critical operations in user handler, it may be
-
 
3746
    rising corresponding bit in exception mask by using subfunction 25
-
 
3747
    Clearing exceptions flags in FPU and/or XMM modules - is
-
 
3748
    responsibility of user handler too.
-
 
3749
 
-
 
3750
======================================================================
-
 
3751
==== Function 68, subfunction 25 - change state of signal activity ===
-
 
3752
======================================================================
-
 
3753
Parameters:
-
 
3754
  * eax = 68 - function number
-
 
3755
  * ebx = 25 - subfunction number
-
 
3756
  * ecx = signal number
-
 
3757
  * edx = value of activity (0/1)
-
 
3758
Returned value:
-
 
3759
  * eax = value of old activity for this signal (0/1)
-
 
3760
Remarks:
-
 
3761
  * In current implementation, it is changed only exception mask for
-
 
3762
    user exception handler, wich was previously set by subfunction 24.
-
 
3763
    At that, number of signal correspond to exception number.
-
 
3764
 
-
 
3765
======================================================================
3757
====================== Fucntion 69 - debugging. ======================
3766
====================== Fucntion 69 - debugging. ======================
3758
======================================================================
3767
======================================================================
3759
A process can load other process as debugged by set of corresponding
3768
A process can load other process as debugged by set of corresponding
3760
bit by call to subfunction 7 of function 70.
3769
bit by call to subfunction 7 of function 70.
3761
A process can have only one debugger; one process can debug some
3770
A process can have only one debugger; one process can debug some
3762
others. The system notifies debugger on events occuring with
3771
others. The system notifies debugger on events occuring with
3763
debugged process. Messages are written to the buffer defined by
3772
debugged process. Messages are written to the buffer defined by
3764
subfunction 0.
3773
subfunction 0.
3765
Format of a message:
3774
Format of a message:
3766
  * +0: dword: message code
3775
  * +0: dword: message code
3767
  * +4: dword: PID of debugged process
3776
  * +4: dword: PID of debugged process
3768
  * +8: there can be additional data depending on message code
3777
  * +8: there can be additional data depending on message code
3769
Message codes:
3778
Message codes:
3770
  * 1 = exception
3779
  * 1 = exception
3771
    * in addition dword-number of the exception is given
3780
    * in addition dword-number of the exception is given
3772
    * process is suspended
3781
    * process is suspended
3773
  * 2 = process has terminated
3782
  * 2 = process has terminated
3774
    * comes at any termination: both through the system function -1,
3783
    * comes at any termination: both through the system function -1,
3775
      and at "murder" by any other process (including debugger itself)
3784
      and at "murder" by any other process (including debugger itself)
3776
  * 3 = debug exception int 1 = #DB
3785
  * 3 = debug exception int 1 = #DB
3777
    * in addition dword-image of the register DR6 is given:
3786
    * in addition dword-image of the register DR6 is given:
3778
      * bits 0-3: condition of the corresponding breakpoint (set by
3787
      * bits 0-3: condition of the corresponding breakpoint (set by
3779
        subfunction 9) is satisfied
3788
        subfunction 9) is satisfied
3780
      * áèò 14: exception has occured because of the trace mode
3789
      * áèò 14: exception has occured because of the trace mode
3781
        (flag TF is set TF)
3790
        (flag TF is set TF)
3782
    * process is suspended
3791
    * process is suspended
3783
When debugger terminates, all debugged processes are killed.
3792
When debugger terminates, all debugged processes are killed.
3784
If debugger does not want this, it must previously detach by
3793
If debugger does not want this, it must previously detach by
3785
subfunction 3.
3794
subfunction 3.
3786
 
3795
 
3787
All subfunctions except 4 and 5 are applicable only to
-
 
3788
processes/threads started from the current by function 70
3796
All subfunctions are applicable only to processes/threads started
3789
with set debugging flag.
3797
from the current by function 70 with set debugging flag.
3790
Debugging of multithreaded programs is not supported yet.
3798
Debugging of multithreaded programs is not supported yet.
3791
The full list of subfunctions:
3799
The full list of subfunctions:
3792
  * subfunction 0 - define data area for debug messages
3800
  * subfunction 0 - define data area for debug messages
3793
  * subfunction 1 - get contents of registers of debugged thread
3801
  * subfunction 1 - get contents of registers of debugged thread
3794
  * subfunction 2 - set contents of registers of debugged thread
3802
  * subfunction 2 - set contents of registers of debugged thread
3795
  * subfunction 3 - detach from debugged process
3803
  * subfunction 3 - detach from debugged process
3796
  * subfunction 4 - suspend debugged thread
3804
  * subfunction 4 - suspend debugged thread
3797
  * subfunction 5 - resume debugged thread
3805
  * subfunction 5 - resume debugged thread
3798
  * subfunction 6 - read from the memory of debugged process
3806
  * subfunction 6 - read from the memory of debugged process
3799
  * subfunction 7 - write to the memory of debugged process
3807
  * subfunction 7 - write to the memory of debugged process
3800
  * subfunction 8 - terminate debugged thread
3808
  * subfunction 8 - terminate debugged thread
3801
  * subfunction 9 - set/clear hardware breakpoint
3809
  * subfunction 9 - set/clear hardware breakpoint
3802
 
3810
 
3803
======================================================================
3811
======================================================================
3804
= Function 69, subfunction 0 - define data area fror debug messages. =
3812
= Function 69, subfunction 0 - define data area fror debug messages. =
3805
======================================================================
3813
======================================================================
3806
Parameters:
3814
Parameters:
3807
  * eax = 69 - function number
3815
  * eax = 69 - function number
3808
  * ebx = 0 - subfunction number
3816
  * ebx = 0 - subfunction number
3809
  * ecx = pointer
3817
  * ecx = pointer
3810
Format of data area:
3818
Format of data area:
3811
  * +0: dword: N = buffer size (not including this header)
3819
  * +0: dword: N = buffer size (not including this header)
3812
  * +4: dword: occupied place
3820
  * +4: dword: occupied place
3813
  * +8: N*byte: buffer
3821
  * +8: N*byte: buffer
3814
Returned value:
3822
Returned value:
3815
  * function does not return value
3823
  * function does not return value
3816
Remarks:
3824
Remarks:
3817
  * If the size field is negative, the buffer is considered locked
3825
  * If the size field is negative, the buffer is considered locked
3818
    and at arrival of new message the system will wait.
3826
    and at arrival of new message the system will wait.
3819
    For synchronization frame all work with the buffer by operations
3827
    For synchronization frame all work with the buffer by operations
3820
    lock/unlock
3828
    lock/unlock
3821
    	neg	[bufsize]
3829
        neg     [bufsize]
3822
  * Data in the buffer are considered as array of items with variable
3830
  * Data in the buffer are considered as array of items with variable
3823
    length - messages. Format of a message is explained in
3831
    length - messages. Format of a message is explained in
3824
    general description.
3832
    general description.
3825
 
3833
 
3826
======================================================================
3834
======================================================================
3827
===================== Function 69, subfunction 1 =====================
3835
===================== Function 69, subfunction 1 =====================
3828
============ Get contents of registers of debugged thread. ===========
3836
============ Get contents of registers of debugged thread. ===========
3829
======================================================================
3837
======================================================================
3830
Parameters:
3838
Parameters:
3831
  * eax = 69 - function number
3839
  * eax = 69 - function number
3832
  * ebx = 1 - subfunction number
3840
  * ebx = 1 - subfunction number
3833
  * ecx = thread identifier
3841
  * ecx = thread identifier
3834
  * edx = size of context structure, must be 0x28=40 bytes
3842
  * edx = size of context structure, must be 0x28=40 bytes
3835
  * esi = pointer to context structure
3843
  * esi = pointer to context structure
3836
Returned value:
3844
Returned value:
3837
  * function does not return value
3845
  * function does not return value
3838
Format of context structure: (FPU is not supported yet)
3846
Format of context structure: (FPU is not supported yet)
3839
  * +0: dword: eip
3847
  * +0: dword: eip
3840
  * +4: dword: eflags
3848
  * +4: dword: eflags
3841
  * +8: dword: eax
3849
  * +8: dword: eax
3842
  * +12 = +0xC: dword: ecx
3850
  * +12 = +0xC: dword: ecx
3843
  * +16 = +0x10: dword: edx
3851
  * +16 = +0x10: dword: edx
3844
  * +20 = +0x14: dword: ebx
3852
  * +20 = +0x14: dword: ebx
3845
  * +24 = +0x18: dword: esp
3853
  * +24 = +0x18: dword: esp
3846
  * +28 = +0x1C: dword: ebp
3854
  * +28 = +0x1C: dword: ebp
3847
  * +32 = +0x20: dword: esi
3855
  * +32 = +0x20: dword: esi
3848
  * +36 = +0x24: dword: edi
3856
  * +36 = +0x24: dword: edi
3849
Remarks:
3857
Remarks:
3850
  * If the thread executes code of ring-0, the function returns
3858
  * If the thread executes code of ring-0, the function returns
3851
    contents of registers of ring-3.
3859
    contents of registers of ring-3.
3852
  * Process must be loaded for debugging (as is shown in
3860
  * Process must be loaded for debugging (as is shown in
3853
    general description).
3861
    general description).
3854
 
3862
 
3855
======================================================================
3863
======================================================================
3856
===================== Function 69, subfunction 2 =====================
3864
===================== Function 69, subfunction 2 =====================
3857
============ Set contents of registers of debugged thread. ===========
3865
============ Set contents of registers of debugged thread. ===========
3858
======================================================================
3866
======================================================================
3859
Parameters:
3867
Parameters:
3860
  * eax = 69 - function number
3868
  * eax = 69 - function number
3861
  * ebx = 2 - subfunction number
3869
  * ebx = 2 - subfunction number
3862
  * ecx = thread identifier
3870
  * ecx = thread identifier
3863
  * edx = size of context structure, must be 0x28=40 bytes
3871
  * edx = size of context structure, must be 0x28=40 bytes
3864
Returned value:
3872
Returned value:
3865
  * function does not return value
3873
  * function does not return value
3866
Format of context structure is shown in the description of
3874
Format of context structure is shown in the description of
3867
subfunction 1.
3875
subfunction 1.
3868
Remarks:
3876
Remarks:
3869
  * If the thread executes code of ring-0, the function returns
3877
  * If the thread executes code of ring-0, the function returns
3870
    contents of registers of ring-3.
3878
    contents of registers of ring-3.
3871
  * Process must be loaded for debugging (as is shown in
3879
  * Process must be loaded for debugging (as is shown in
3872
    general description).
3880
    general description).
3873
 
3881
 
3874
======================================================================
3882
======================================================================
3875
===== Function 69, subfunction 3 - detach from debugged process. =====
3883
===== Function 69, subfunction 3 - detach from debugged process. =====
3876
======================================================================
3884
======================================================================
3877
Parameters:
3885
Parameters:
3878
  * eax = 69 - function number
3886
  * eax = 69 - function number
3879
  * ebx = 3 - subfunction number
3887
  * ebx = 3 - subfunction number
3880
  * ecx = identifier
3888
  * ecx = identifier
3881
Returned value:
3889
Returned value:
3882
  * function does not return value
3890
  * function does not return value
3883
Remarks:
3891
Remarks:
3884
  * If the process was suspended, it resumes execution.
3892
  * If the process was suspended, it resumes execution.
3885
 
3893
 
3886
======================================================================
3894
======================================================================
3887
============= Function 69, subfunction 4 - suspend thread. ===========
3895
======== Function 69, subfunction 4 - suspend debugged thread. =======
3888
======================================================================
3896
======================================================================
3889
Parameters:
3897
Parameters:
3890
  * eax = 69 - function number
3898
  * eax = 69 - function number
3891
  * ebx = 4 - subfunction number
3899
  * ebx = 4 - subfunction number
3892
  * ecx = thread identifier
3900
  * ecx = thread identifier
3893
Returned value:
3901
Returned value:
3894
  * function does not return value
3902
  * function does not return value
-
 
3903
Remarks:
-
 
3904
  * Process must be loaded for debugging (as is shown in
-
 
3905
    general description).
3895
 
3906
 
3896
======================================================================
3907
======================================================================
3897
============= Function 69, subfunction 5 - resume thread. ============
3908
======== Function 69, subfunction 5 - resume debugged thread. ========
3898
======================================================================
3909
======================================================================
3899
Parameters:
3910
Parameters:
3900
  * eax = 69 - function number
3911
  * eax = 69 - function number
3901
  * ebx = 5 - subfunction number
3912
  * ebx = 5 - subfunction number
3902
  * ecx = thread identifier
3913
  * ecx = thread identifier
3903
Returned value:
3914
Returned value:
3904
  * function does not return value
3915
  * function does not return value
-
 
3916
Remarks:
-
 
3917
  * Process must be loaded for debugging (as is shown in
-
 
3918
    general description).
3905
 
3919
 
3906
======================================================================
3920
======================================================================
3907
= Fucntion 69, subfunction 6 - read from memory of debugged process. =
3921
= Fucntion 69, subfunction 6 - read from memory of debugged process. =
3908
======================================================================
3922
======================================================================
3909
Parameters:
3923
Parameters:
3910
  * eax = 69 - function number
3924
  * eax = 69 - function number
3911
  * ebx = 6 - subfunction number
3925
  * ebx = 6 - subfunction number
3912
  * ecx = identifier
3926
  * ecx = identifier
3913
  * edx = number of bytes to read
3927
  * edx = number of bytes to read
3914
  * esi = address in the memory of debugged process
3928
  * esi = address in the memory of debugged process
3915
  * edi = pointer to buffer for data
3929
  * edi = pointer to buffer for data
3916
Returned value:
3930
Returned value:
3917
  * eax = -1 at an error (invalid PID or buffer)
3931
  * eax = -1 at an error (invalid PID or buffer)
3918
  * otherwise eax = number of read bytes (possibly, 0,
3932
  * otherwise eax = number of read bytes (possibly, 0,
3919
    if esi is too large)
3933
    if esi is too large)
3920
Remarks:
3934
Remarks:
3921
  * Process must be loaded for debugging (as is shown in
3935
  * Process must be loaded for debugging (as is shown in
3922
    general description).
3936
    general description).
3923
 
3937
 
3924
======================================================================
3938
======================================================================
3925
== Function 69, subfunction 7 - write to memory of debugged process. =
3939
== Function 69, subfunction 7 - write to memory of debugged process. =
3926
======================================================================
3940
======================================================================
3927
Parameters:
3941
Parameters:
3928
  * eax = 69 - function number
3942
  * eax = 69 - function number
3929
  * ebx = 7 - subfunction number
3943
  * ebx = 7 - subfunction number
3930
  * ecx = identifier
3944
  * ecx = identifier
3931
  * edx = number of bytes to write
3945
  * edx = number of bytes to write
3932
  * esi = address of memory in debugged process
3946
  * esi = address of memory in debugged process
3933
  * edi = pointer to data
3947
  * edi = pointer to data
3934
Returned value:
3948
Returned value:
3935
  * eax = -1 at an error (invalid PID or buffer)
3949
  * eax = -1 at an error (invalid PID or buffer)
3936
  * otherwise eax = number of written bytes (possibly, 0,
3950
  * otherwise eax = number of written bytes (possibly, 0,
3937
    if esi is too large)
3951
    if esi is too large)
3938
Remarks:
3952
Remarks:
3939
  * Process must be loaded for debugging (as is shown in
3953
  * Process must be loaded for debugging (as is shown in
3940
    general description).
3954
    general description).
3941
 
3955
 
3942
======================================================================
3956
======================================================================
3943
======= Function 69, subfunction 8 - terminate debugged thread. ======
3957
======= Function 69, subfunction 8 - terminate debugged thread. ======
3944
======================================================================
3958
======================================================================
3945
Parameters:
3959
Parameters:
3946
  * eax = 69 - function number
3960
  * eax = 69 - function number
3947
  * ebx = 8 - subfunction number
3961
  * ebx = 8 - subfunction number
3948
  * ecx = identifier
3962
  * ecx = identifier
3949
Returned value:
3963
Returned value:
3950
  * function does not return value
3964
  * function does not return value
3951
Remarks:
3965
Remarks:
3952
  * Process must be loaded for debugging (as is shown in
3966
  * Process must be loaded for debugging (as is shown in
3953
    general description).
3967
    general description).
3954
  * The function is similar to subfunction 2 of function 18
3968
  * The function is similar to subfunction 2 of function 18
3955
    with two differences: it requires first remark and
3969
    with two differences: it requires first remark and
3956
    accepts PID rather than slot number.
3970
    accepts PID rather than slot number.
3957
 
3971
 
3958
======================================================================
3972
======================================================================
3959
===== Function 69, subfunction 9 - set/clear hardware breakpoint. ====
3973
===== Function 69, subfunction 9 - set/clear hardware breakpoint. ====
3960
======================================================================
3974
======================================================================
3961
Parameters:
3975
Parameters:
3962
  * eax = 69 - function number
3976
  * eax = 69 - function number
3963
  * ebx = 9 - subfunction number
3977
  * ebx = 9 - subfunction number
3964
  * ecx = thread identifier
3978
  * ecx = thread identifier
3965
  * dl = index of breakpoint, from 0 to 3 inclusively
3979
  * dl = index of breakpoint, from 0 to 3 inclusively
3966
  * dh = flags:
3980
  * dh = flags:
3967
    * if high bit is cleared - set breakpoint:
3981
    * if high bit is cleared - set breakpoint:
3968
      * bits 0-1 - condition:
3982
      * bits 0-1 - condition:
3969
        * 00 = breakpoint on execution
3983
        * 00 = breakpoint on execution
3970
        * 01 = breakpoint on read
3984
        * 01 = breakpoint on read
3971
        * 11 = breakpoint on read/write
3985
        * 11 = breakpoint on read/write
3972
      * bits 2-3 - length; for breakpoints on exception it must be
3986
      * bits 2-3 - length; for breakpoints on exception it must be
3973
        00, otherwise one of
3987
        00, otherwise one of
3974
        * 00 = byte
3988
        * 00 = byte
3975
        * 01 = word
3989
        * 01 = word
3976
        * 11 = dword
3990
        * 11 = dword
3977
      * esi = breakpoint address; must be aligned according to
3991
      * esi = breakpoint address; must be aligned according to
3978
        the length (i.e. must be even for word breakpoints,
3992
        the length (i.e. must be even for word breakpoints,
3979
        divisible by 4 for dword)
3993
        divisible by 4 for dword)
3980
    * if high bit is set - clear breakpoint
3994
    * if high bit is set - clear breakpoint
3981
Returned value:
3995
Returned value:
3982
  * eax = 0 - success
3996
  * eax = 0 - success
3983
  * eax = 1 - error in the input data
3997
  * eax = 1 - error in the input data
3984
  * eax = 2 - (reserved, is never returned in the current
3998
  * eax = 2 - (reserved, is never returned in the current
3985
    implementation) a global breakpoint with that index is already set
3999
    implementation) a global breakpoint with that index is already set
3986
Remarks:
4000
Remarks:
3987
  * Process must be loaded for debugging (as is shown in
4001
  * Process must be loaded for debugging (as is shown in
3988
    general description).
4002
    general description).
3989
  * Hardware breakpoints are implemented through DRx-registers of
4003
  * Hardware breakpoints are implemented through DRx-registers of
3990
    the processor, all limitations results from this.
4004
    the processor, all limitations results from this.
3991
  * The function can reinstall the breakpoint, previously set
4005
  * The function can reinstall the breakpoint, previously set
3992
    by it (and it does not inform on this).
4006
    by it (and it does not inform on this).
3993
    Carry on the list of set breakpoints in the debugger.
4007
    Carry on the list of set breakpoints in the debugger.
3994
  * Breakpoints generate debug exception #DB, on which the system
4008
  * Breakpoints generate debug exception #DB, on which the system
3995
    notifies debugger.
4009
    notifies debugger.
3996
  * Breakpoints on write and read/write act after
4010
  * Breakpoints on write and read/write act after
3997
    execution of the caused it instruction.
4011
    execution of the caused it instruction.
3998
 
4012
 
3999
======================================================================
4013
======================================================================
4000
==== Function 70 - work with file system with long names support. ====
4014
==== Function 70 - work with file system with long names support. ====
4001
======================================================================
4015
======================================================================
4002
Parameters:
4016
Parameters:
4003
  * eax = 70
4017
  * eax = 70
4004
  * ebx = pointer to the information structure
4018
  * ebx = pointer to the information structure
4005
Returned value:
4019
Returned value:
4006
  * eax = 0 - success; otherwise file system error code
4020
  * eax = 0 - success; otherwise file system error code
4007
  * some subfunctions return value in other registers too
4021
  * some subfunctions return value in other registers too
4008
General format of the information structure:
4022
General format of the information structure:
4009
  * +0: dword: subfunction number
4023
  * +0: dword: subfunction number
4010
  * +4: dword: file offset
4024
  * +4: dword: file offset
4011
  * +8: dword: high dword of offset (must be 0) or flags field
4025
  * +8: dword: high dword of offset (must be 0) or flags field
4012
  * +12 = +0xC: dword: size
4026
  * +12 = +0xC: dword: size
4013
  * +16 = +0x10: dword: pointer to data
4027
  * +16 = +0x10: dword: pointer to data
4014
  * +20 = +0x14: n db: ASCIIZ-string with the filename
4028
  * +20 = +0x14: n db: ASCIIZ-string with the filename
4015
    or
4029
    or
4016
  * +20 = +0x14: db 0
4030
  * +20 = +0x14: db 0
4017
  * +21 = +0x15: dd pointer to ASCIIZ-string with the filename
4031
  * +21 = +0x15: dd pointer to ASCIIZ-string with the filename
4018
Specifications - in documentation on the appropriate subfunction.
4032
Specifications - in documentation on the appropriate subfunction.
4019
Filename is case-insensitive. Russian letters must be written in
4033
Filename is case-insensitive. Russian letters must be written in
4020
the encoding cp866 (DOS).
4034
the encoding cp866 (DOS).
4021
Format of filename:
4035
Format of filename:
4022
/base/number/dir1/dir2/.../dirn/file,
4036
/base/number/dir1/dir2/.../dirn/file,
4023
where /base/number identifies device, on which file is located:
4037
where /base/number identifies device, on which file is located:
4024
one of
4038
one of
4025
  * /RD/1 = /RAMDISK/1 to access ramdisk
4039
  * /RD/1 = /RAMDISK/1 to access ramdisk
4026
  * /FD/1 = /FLOPPYDISK/1 to access first floppy drive,
4040
  * /FD/1 = /FLOPPYDISK/1 to access first floppy drive,
4027
    /FD/2 = /FLOPPYDISK/2 to access second one
4041
    /FD/2 = /FLOPPYDISK/2 to access second one
4028
  * /HD0/x, /HD1/x, /HD2/x, /HD3/x to access accordingly to devices
4042
  * /HD0/x, /HD1/x, /HD2/x, /HD3/x to access accordingly to devices
4029
    IDE0 (Primary Master), IDE1 (Primary Slave),
4043
    IDE0 (Primary Master), IDE1 (Primary Slave),
4030
    IDE2 (Secondary Master), IDE3 (Secondary Slave);
4044
    IDE2 (Secondary Master), IDE3 (Secondary Slave);
4031
    x - partition number on the selected hard drive, varies from 1
4045
    x - partition number on the selected hard drive, varies from 1
4032
    to 255 (on each hard drive the indexing starts from 1)
4046
    to 255 (on each hard drive the indexing starts from 1)
4033
  * /CD0/1, /CD1/1, /CD2/1, /CD3/1 to access accordingly to
4047
  * /CD0/1, /CD1/1, /CD2/1, /CD3/1 to access accordingly to
4034
    CD on IDE0 (Primary Master), IDE1 (Primary Slave),
4048
    CD on IDE0 (Primary Master), IDE1 (Primary Slave),
4035
    IDE2 (Secondary Master), IDE3 (Secondary Slave)
4049
    IDE2 (Secondary Master), IDE3 (Secondary Slave)
4036
  * /SYS means system folder; with the usual boot (from floppy)
4050
  * /SYS means system folder; with the usual boot (from floppy)
4037
    is equivalent to /RD/1
4051
    is equivalent to /RD/1
4038
Examples:
4052
Examples:
4039
  * '/rd/1/kernel.asm',0
4053
  * '/rd/1/kernel.asm',0
4040
  * '/HD0/1/kernel.asm',0
4054
  * '/HD0/1/kernel.asm',0
4041
  * '/hd0/2/menuet/pics/tanzania.bmp',0
4055
  * '/hd0/2/menuet/pics/tanzania.bmp',0
4042
  * '/hd0/1/Program files/NameOfProgram/SomeFile.SomeExtension',0
4056
  * '/hd0/1/Program files/NameOfProgram/SomeFile.SomeExtension',0
4043
  * '/sys/MySuperApp.ini',0
4057
  * '/sys/MySuperApp.ini',0
4044
Available subfunctions:
4058
Available subfunctions:
4045
  * subfunction 0 - read file
4059
  * subfunction 0 - read file
4046
  * subfunction 1 - read folder
4060
  * subfunction 1 - read folder
4047
  * subfunction 2 - create/rewrite file
4061
  * subfunction 2 - create/rewrite file
4048
  * subfunction 3 - write to existing file
4062
  * subfunction 3 - write to existing file
4049
  * subfunction 4 - set file size
4063
  * subfunction 4 - set file size
4050
  * subfunction 5 - get attributes of file/folder
4064
  * subfunction 5 - get attributes of file/folder
4051
  * subfunction 6 - set attributes of file/folder
4065
  * subfunction 6 - set attributes of file/folder
4052
  * subfunction 7 - start application
4066
  * subfunction 7 - start application
4053
  * subfunction 8 - delete file/folder
4067
  * subfunction 8 - delete file/folder
4054
  * subfunction 9 - create folder
4068
  * subfunction 9 - create folder
4055
For CD-drives due to hardware limitations only subfunctions
4069
For CD-drives due to hardware limitations only subfunctions
4056
0,1,5 and 7 are available, other subfunctions return error
4070
0,1,5 and 7 are available, other subfunctions return error
4057
with code 2.
4071
with code 2.
4058
At the first call of subfunctions 0,1,5,7 to ATAPI devices
4072
At the first call of subfunctions 0,1,5,7 to ATAPI devices
4059
(CD and DVD) the manual control of tray is locked due to caching
4073
(CD and DVD) the manual control of tray is locked due to caching
4060
drive data. Unlocking is made when subfunction 4 of function 24
4074
drive data. Unlocking is made when subfunction 4 of function 24
4061
is called for corresponding device.
4075
is called for corresponding device.
4062
 
4076
 
4063
======================================================================
4077
======================================================================
4064
=== Function 70, subfunction 0 - read file with long names support. ==
4078
=== Function 70, subfunction 0 - read file with long names support. ==
4065
======================================================================
4079
======================================================================
4066
Parameters:
4080
Parameters:
4067
  * eax = 70 - function number
4081
  * eax = 70 - function number
4068
  * ebx = pointer to the information structure
4082
  * ebx = pointer to the information structure
4069
Format of the information structure:
4083
Format of the information structure:
4070
  * +0: dword: 0 = subfunction number
4084
  * +0: dword: 0 = subfunction number
4071
  * +4: dword: file offset (in bytes)
4085
  * +4: dword: file offset (in bytes)
4072
  * +8: dword: 0 (reserved for high dword of offset)
4086
  * +8: dword: 0 (reserved for high dword of offset)
4073
  * +12 = +0xC: dword: number of bytes to read
4087
  * +12 = +0xC: dword: number of bytes to read
4074
  * +16 = +0x10: dword: pointer to buffer for data
4088
  * +16 = +0x10: dword: pointer to buffer for data
4075
  * +20 = +0x14: ASCIIZ-name of file, the rules of names forming are
4089
  * +20 = +0x14: ASCIIZ-name of file, the rules of names forming are
4076
    given in the general description
4090
    given in the general description
4077
    or
4091
    or
4078
  * +20 = +0x14: db 0
4092
  * +20 = +0x14: db 0
4079
  * +21 = +0x15: dd pointer to ASCIIZ-string with file name
4093
  * +21 = +0x15: dd pointer to ASCIIZ-string with file name
4080
Returned value:
4094
Returned value:
4081
  * eax = 0 - success, otherwise file system error code
4095
  * eax = 0 - success, otherwise file system error code
4082
  * ebx = number of read bytes or -1=0xffffffff if file was not found
4096
  * ebx = number of read bytes or -1=0xffffffff if file was not found
4083
Remarks:
4097
Remarks:
4084
  * If file was ended before last requested block was read,
4098
  * If file was ended before last requested block was read,
4085
    the function will read as many as it can, and after that return
4099
    the function will read as many as it can, and after that return
4086
    eax=6 (EOF).
4100
    eax=6 (EOF).
4087
  * The function does not allow to read folder (returns eax=10,
4101
  * The function does not allow to read folder (returns eax=10,
4088
    access denied).
4102
    access denied).
4089
 
4103
 
4090
======================================================================
4104
======================================================================
4091
== Function 70, subfunction 1 - read folder with long names support. =
4105
== Function 70, subfunction 1 - read folder with long names support. =
4092
======================================================================
4106
======================================================================
4093
Parameters:
4107
Parameters:
4094
  * eax = 70 - function number
4108
  * eax = 70 - function number
4095
  * ebx = pointer to the information structure
4109
  * ebx = pointer to the information structure
4096
Format of the information structure:
4110
Format of the information structure:
4097
  * +0: dword: 1 = subfunction number
4111
  * +0: dword: 1 = subfunction number
4098
  * +4: dword: index of starting block (beginning from 0)
4112
  * +4: dword: index of starting block (beginning from 0)
4099
  * +8: dword: flags field:
4113
  * +8: dword: flags field:
4100
    * bit 0 (mask 1): in what format to return names,
4114
    * bit 0 (mask 1): in what format to return names,
4101
      0=ANSI, 1=UNICODE
4115
      0=ANSI, 1=UNICODE
4102
    * other bits are reserved and must be set to 0 for the future
4116
    * other bits are reserved and must be set to 0 for the future
4103
      compatibility
4117
      compatibility
4104
  * +12 = +0xC: dword: number of blocks to read
4118
  * +12 = +0xC: dword: number of blocks to read
4105
  * +16 = +0x10: dword: pointer to buffer for data, buffer size
4119
  * +16 = +0x10: dword: pointer to buffer for data, buffer size
4106
    must be not less than 32 + [+12]*560 bytes
4120
    must be not less than 32 + [+12]*560 bytes
4107
  * +20 = +0x14: ASCIIZ-name of folder, the rules of names forming are
4121
  * +20 = +0x14: ASCIIZ-name of folder, the rules of names forming are
4108
    given in the general description
4122
    given in the general description
4109
    or
4123
    or
4110
  * +20 = +0x14: db 0
4124
  * +20 = +0x14: db 0
4111
  * +21 = +0x15: dd pointer to ASCIIZ-string with file name
4125
  * +21 = +0x15: dd pointer to ASCIIZ-string with file name
4112
Returned value:
4126
Returned value:
4113
  * eax = 0 - success, otherwise file system error code
4127
  * eax = 0 - success, otherwise file system error code
4114
  * ebx = number of files, information on which was written to
4128
  * ebx = number of files, information on which was written to
4115
    the buffer, or -1=0xffffffff, if folder was not found
4129
    the buffer, or -1=0xffffffff, if folder was not found
4116
Structure of the buffer:
4130
Structure of the buffer:
4117
  * +0: 32*byte: header
4131
  * +0: 32*byte: header
4118
  * +32 = +0x20: n1*byte: block with information on file 1
4132
  * +32 = +0x20: n1*byte: block with information on file 1
4119
  * +32+n1: n2*byte: block with information on file 2
4133
  * +32+n1: n2*byte: block with information on file 2
4120
  * ...
4134
  * ...
4121
Structure of header:
4135
Structure of header:
4122
  * +0: dword: version of structure (current is 1)
4136
  * +0: dword: version of structure (current is 1)
4123
  * +4: dword: number of placed blocks; is not greater than requested
4137
  * +4: dword: number of placed blocks; is not greater than requested
4124
    in the field +12 of information structure; can be less, if
4138
    in the field +12 of information structure; can be less, if
4125
    there are no more files in folder (the same as in ebx)
4139
    there are no more files in folder (the same as in ebx)
4126
  * +8: dword: total number of files in folder
4140
  * +8: dword: total number of files in folder
4127
  * +12 = +0xC: 20*byte: reserved (zeroed)
4141
  * +12 = +0xC: 20*byte: reserved (zeroed)
4128
Structure of block of data for folder entry (BDFE):
4142
Structure of block of data for folder entry (BDFE):
4129
  * +0: dword: attributes of file:
4143
  * +0: dword: attributes of file:
4130
    * bit 0 (mask 1): file is read-only
4144
    * bit 0 (mask 1): file is read-only
4131
    * bit 1 (mask 2): file is hidden
4145
    * bit 1 (mask 2): file is hidden
4132
    * bit 2 (mask 4): file is system
4146
    * bit 2 (mask 4): file is system
4133
    * bit 3 (mask 8): this is not a file but volume label
4147
    * bit 3 (mask 8): this is not a file but volume label
4134
      (for one partition meets no more than once and
4148
      (for one partition meets no more than once and
4135
      only in root folder)
4149
      only in root folder)
4136
    * bit 4 (mask 0x10): this is a folder
4150
    * bit 4 (mask 0x10): this is a folder
4137
    * bit 5 (mask 0x20): file was not archived - many archivation
4151
    * bit 5 (mask 0x20): file was not archived - many archivation
4138
      programs have an option to archive only files with this bit set,
4152
      programs have an option to archive only files with this bit set,
4139
      and after archiving this bit is cleared - it can be useful
4153
      and after archiving this bit is cleared - it can be useful
4140
      for automatically creating of backup-archives as at writing
4154
      for automatically creating of backup-archives as at writing
4141
      this bit is usually set
4155
      this bit is usually set
4142
  * +4: byte: type of name data:
4156
  * +4: byte: type of name data:
4143
    (coincides with bit 0 of flags in the information structure)
4157
    (coincides with bit 0 of flags in the information structure)
4144
    * 0 = ASCII = 1-byte representation of each character
4158
    * 0 = ASCII = 1-byte representation of each character
4145
    * 1 = UNICODE = 2-byte representation of each character
4159
    * 1 = UNICODE = 2-byte representation of each character
4146
  * +5: 3*byte: reserved (zero)
4160
  * +5: 3*byte: reserved (zero)
4147
  * +8: 4*byte: time of file creation
4161
  * +8: 4*byte: time of file creation
4148
  * +12 = +0xC: 4*byte: date of file creation
4162
  * +12 = +0xC: 4*byte: date of file creation
4149
  * +16 = +0x10: 4*byte: time of last access (read or write)
4163
  * +16 = +0x10: 4*byte: time of last access (read or write)
4150
  * +20 = +0x14: 4*byte: date of last access
4164
  * +20 = +0x14: 4*byte: date of last access
4151
  * +24 = +0x18: 4*byte: time of last modification
4165
  * +24 = +0x18: 4*byte: time of last modification
4152
  * +28 = +0x1C: 4*byte: date of last modification
4166
  * +28 = +0x1C: 4*byte: date of last modification
4153
  * +32 = +0x20: qword: file size in bytes (up to 16777216 Tb)
4167
  * +32 = +0x20: qword: file size in bytes (up to 16777216 Tb)
4154
  * +40 = +0x28: name
4168
  * +40 = +0x28: name
4155
    * for ASCII format: maximum length is 263 characters
4169
    * for ASCII format: maximum length is 263 characters
4156
      (263 bytes), byte after the name has value 0
4170
      (263 bytes), byte after the name has value 0
4157
    * for UNICODE format: maximum length is 259 characters
4171
    * for UNICODE format: maximum length is 259 characters
4158
      (518 bytes), 2 bytes after the name have value 0
4172
      (518 bytes), 2 bytes after the name have value 0
4159
Time format:
4173
Time format:
4160
  * +0: byte: seconds
4174
  * +0: byte: seconds
4161
  * +1: byte: minutes
4175
  * +1: byte: minutes
4162
  * +2: byte: hours
4176
  * +2: byte: hours
4163
  * +3: byte: reserved (0)
4177
  * +3: byte: reserved (0)
4164
  * for example, 23.59.59 is written as (in hex) 3B 3B 17 00
4178
  * for example, 23.59.59 is written as (in hex) 3B 3B 17 00
4165
Date format:
4179
Date format:
4166
  * +0: byte: day
4180
  * +0: byte: day
4167
  * +1: byte: month
4181
  * +1: byte: month
4168
  * +2: word: year
4182
  * +2: word: year
4169
  * for example, 25.11.1979 is written as (in hex) 19 0B BB 07
4183
  * for example, 25.11.1979 is written as (in hex) 19 0B BB 07
4170
Remarks:
4184
Remarks:
4171
  * If BDFE contains ASCII name, the length of BDFE is 304 bytes,
4185
  * If BDFE contains ASCII name, the length of BDFE is 304 bytes,
4172
    if UNICODE name - 560 bytes. Value of length is aligned
4186
    if UNICODE name - 560 bytes. Value of length is aligned
4173
    on 16-byte bound (to accelerate processing in CPU cache).
4187
    on 16-byte bound (to accelerate processing in CPU cache).
4174
  * First character after a name is zero (ASCIIZ-string). The further
4188
  * First character after a name is zero (ASCIIZ-string). The further
4175
    data contain garbage.
4189
    data contain garbage.
4176
  * If files in folder were ended before requested number was read,
4190
  * If files in folder were ended before requested number was read,
4177
    the function will read as many as it can, and after that return
4191
    the function will read as many as it can, and after that return
4178
    eax=6 (EOF).
4192
    eax=6 (EOF).
4179
  * Any folder on the disk, except for root, contains two special
4193
  * Any folder on the disk, except for root, contains two special
4180
    entries "." and "..", identifying accordingly the folder itself
4194
    entries "." and "..", identifying accordingly the folder itself
4181
    and the parent folder.
4195
    and the parent folder.
4182
  * The function allows also to read virtual folders "/", "/rd",
4196
  * The function allows also to read virtual folders "/", "/rd",
4183
    "/fd", "/hd[n]", thus attributes of subfolders are set to 0x10,
4197
    "/fd", "/hd[n]", thus attributes of subfolders are set to 0x10,
4184
    and times and dates are zeroed. An alternative way to get the
4198
    and times and dates are zeroed. An alternative way to get the
4185
    equipment information - subfunction 11 of function 18.
4199
    equipment information - subfunction 11 of function 18.
4186
 
4200
 
4187
======================================================================
4201
======================================================================
4188
===================== Function 70, subfunction 2 =====================
4202
===================== Function 70, subfunction 2 =====================
4189
============ Create/rewrite file with long names support. ============
4203
============ Create/rewrite file with long names support. ============
4190
======================================================================
4204
======================================================================
4191
Parameters:
4205
Parameters:
4192
  * eax = 70 - function number
4206
  * eax = 70 - function number
4193
  * ebx = pointer to the information structure
4207
  * ebx = pointer to the information structure
4194
Format of the information structure:
4208
Format of the information structure:
4195
  * +0: dword: 2 = subfunction number
4209
  * +0: dword: 2 = subfunction number
4196
  * +4: dword: 0 (reserved)
4210
  * +4: dword: 0 (reserved)
4197
  * +8: dword: 0 (reserved)
4211
  * +8: dword: 0 (reserved)
4198
  * +12 = +0xC: dword: number of bytes to read
4212
  * +12 = +0xC: dword: number of bytes to read
4199
  * +16 = +0x10: dword: pointer to data
4213
  * +16 = +0x10: dword: pointer to data
4200
  * +20 = +0x14: ASCIIZ-name of file, the rules of names forming are
4214
  * +20 = +0x14: ASCIIZ-name of file, the rules of names forming are
4201
    given in the general description
4215
    given in the general description
4202
    or
4216
    or
4203
  * +20 = +0x14: db 0
4217
  * +20 = +0x14: db 0
4204
  * +21 = +0x15: dd pointer to ASCIIZ-string with file name
4218
  * +21 = +0x15: dd pointer to ASCIIZ-string with file name
4205
Returned value:
4219
Returned value:
4206
  * eax = 0 - success, otherwise file system error code
4220
  * eax = 0 - success, otherwise file system error code
4207
  * ebx = number of written bytes (possibly 0)
4221
  * ebx = number of written bytes (possibly 0)
4208
Remarks:
4222
Remarks:
4209
  * If a file with given name did not exist, it is created;
4223
  * If a file with given name did not exist, it is created;
4210
    if it existed, it is rewritten.
4224
    if it existed, it is rewritten.
4211
  * If there is not enough free space on disk, the function will
4225
  * If there is not enough free space on disk, the function will
4212
    write as many as can and then return error code 8.
4226
    write as many as can and then return error code 8.
4213
  * The function is not supported for CD (returns error code 2).
4227
  * The function is not supported for CD (returns error code 2).
4214
 
4228
 
4215
======================================================================
4229
======================================================================
4216
===================== Function 70, subfunction 3 =====================
4230
===================== Function 70, subfunction 3 =====================
4217
=========== Write to existing file with long names support. ==========
4231
=========== Write to existing file with long names support. ==========
4218
======================================================================
4232
======================================================================
4219
Parameters:
4233
Parameters:
4220
  * eax = 70 - function number
4234
  * eax = 70 - function number
4221
  * ebx = pointer to the information structure
4235
  * ebx = pointer to the information structure
4222
Format of the information structure:
4236
Format of the information structure:
4223
  * +0: dword: 3 = subfunction number
4237
  * +0: dword: 3 = subfunction number
4224
  * +4: dword: file offset (in bytes)
4238
  * +4: dword: file offset (in bytes)
4225
  * +8: dword: high dword of offset (must be 0 for FAT)
4239
  * +8: dword: high dword of offset (must be 0 for FAT)
4226
  * +12 = +0xC: dword: number of bytes to write
4240
  * +12 = +0xC: dword: number of bytes to write
4227
  * +16 = +0x10: dword: pointer to data
4241
  * +16 = +0x10: dword: pointer to data
4228
  * +20 = +0x14: ASCIIZ-name of file, the rules of names forming are
4242
  * +20 = +0x14: ASCIIZ-name of file, the rules of names forming are
4229
    given in the general description
4243
    given in the general description
4230
    or
4244
    or
4231
  * +20 = +0x14: db 0
4245
  * +20 = +0x14: db 0
4232
  * +21 = +0x15: dd pointer to ASCIIZ-string with file name
4246
  * +21 = +0x15: dd pointer to ASCIIZ-string with file name
4233
Returned value:
4247
Returned value:
4234
  * eax = 0 - success, otherwise file system error code
4248
  * eax = 0 - success, otherwise file system error code
4235
  * ebx = number of written bytes (possibly 0)
4249
  * ebx = number of written bytes (possibly 0)
4236
Remarks:
4250
Remarks:
4237
  * The file must already exist, otherwise function returns eax=5.
4251
  * The file must already exist, otherwise function returns eax=5.
4238
  * The only result of write 0 bytes is update in the file attributes
4252
  * The only result of write 0 bytes is update in the file attributes
4239
    date/time of modification and access to the current date/time.
4253
    date/time of modification and access to the current date/time.
4240
  * If beginning and/or ending position is greater than file size
4254
  * If beginning and/or ending position is greater than file size
4241
    (except for the previous case), the file is expanded to needed
4255
    (except for the previous case), the file is expanded to needed
4242
    size with zero characters.
4256
    size with zero characters.
4243
  * The function is not supported for CD (returns error code 2).
4257
  * The function is not supported for CD (returns error code 2).
4244
 
4258
 
4245
======================================================================
4259
======================================================================
4246
============ Function 70, subfunction 4 - set end of file. ===========
4260
============ Function 70, subfunction 4 - set end of file. ===========
4247
======================================================================
4261
======================================================================
4248
Parameters:
4262
Parameters:
4249
  * eax = 70 - function number
4263
  * eax = 70 - function number
4250
  * ebx = pointer to the information structure
4264
  * ebx = pointer to the information structure
4251
Format of the information structure:
4265
Format of the information structure:
4252
  * +0: dword: 4 = subfunction number
4266
  * +0: dword: 4 = subfunction number
4253
  * +4: dword: low dword of new file size
4267
  * +4: dword: low dword of new file size
4254
  * +8: dword: high dword of new file size (must be 0 for FAT)
4268
  * +8: dword: high dword of new file size (must be 0 for FAT)
4255
  * +12 = +0xC: dword: 0 (reserved)
4269
  * +12 = +0xC: dword: 0 (reserved)
4256
  * +16 = +0x10: dword: 0 (reserved)
4270
  * +16 = +0x10: dword: 0 (reserved)
4257
  * +20 = +0x14: ASCIIZ-name of file, the rules of names forming are
4271
  * +20 = +0x14: ASCIIZ-name of file, the rules of names forming are
4258
    given in the general description
4272
    given in the general description
4259
    or
4273
    or
4260
  * +20 = +0x14: db 0
4274
  * +20 = +0x14: db 0
4261
  * +21 = +0x15: dd pointer to ASCIIZ-string with file name
4275
  * +21 = +0x15: dd pointer to ASCIIZ-string with file name
4262
Returned value:
4276
Returned value:
4263
  * eax = 0 - success, otherwise file system error code
4277
  * eax = 0 - success, otherwise file system error code
4264
  * ebx destroyed
4278
  * ebx destroyed
4265
Remarks:
4279
Remarks:
4266
  * If the new file size is less than old one, file is truncated.
4280
  * If the new file size is less than old one, file is truncated.
4267
    If the new size is greater than old one, file is expanded with
4281
    If the new size is greater than old one, file is expanded with
4268
    characters with code 0. If the new size is equal to old one,
4282
    characters with code 0. If the new size is equal to old one,
4269
    the only result of call is set date/time of modification and
4283
    the only result of call is set date/time of modification and
4270
    access to the current date/time.
4284
    access to the current date/time.
4271
  * If there is not enough free space on disk for expansion, the
4285
  * If there is not enough free space on disk for expansion, the
4272
    function will expand to maximum possible size and then return
4286
    function will expand to maximum possible size and then return
4273
    error code 8.
4287
    error code 8.
4274
  * The function is not supported for CD (returns error code 2).
4288
  * The function is not supported for CD (returns error code 2).
4275
 
4289
 
4276
======================================================================
4290
======================================================================
4277
==== Function 70, subfunction 5 - get information on file/folder. ====
4291
==== Function 70, subfunction 5 - get information on file/folder. ====
4278
======================================================================
4292
======================================================================
4279
Parameters:
4293
Parameters:
4280
  * eax = 70 - function number
4294
  * eax = 70 - function number
4281
  * ebx = pointer to the information structure
4295
  * ebx = pointer to the information structure
4282
Format of the information structure:
4296
Format of the information structure:
4283
  * +0: dword: 5 = subfunction number
4297
  * +0: dword: 5 = subfunction number
4284
  * +4: dword: 0 (reserved)
4298
  * +4: dword: 0 (reserved)
4285
  * +8: dword: 0 (reserved)
4299
  * +8: dword: 0 (reserved)
4286
  * +12 = +0xC: dword: 0 (reserved)
4300
  * +12 = +0xC: dword: 0 (reserved)
4287
  * +16 = +0x10: dword: pointer to buffer for data (40 bytes)
4301
  * +16 = +0x10: dword: pointer to buffer for data (40 bytes)
4288
  * +20 = +0x14: ASCIIZ-name of file, the rules of names forming are
4302
  * +20 = +0x14: ASCIIZ-name of file, the rules of names forming are
4289
    given in the general description
4303
    given in the general description
4290
    or
4304
    or
4291
  * +20 = +0x14: db 0
4305
  * +20 = +0x14: db 0
4292
  * +21 = +0x15: dd pointer to ASCIIZ-string with file name
4306
  * +21 = +0x15: dd pointer to ASCIIZ-string with file name
4293
Returned value:
4307
Returned value:
4294
  * eax = 0 - success, otherwise file system error code
4308
  * eax = 0 - success, otherwise file system error code
4295
  * ebx destroyed
4309
  * ebx destroyed
4296
Information on file is returned in the BDFE format (block of data
4310
Information on file is returned in the BDFE format (block of data
4297
for folder entry), explained in the description of
4311
for folder entry), explained in the description of
4298
subfunction 1, but without filename
4312
subfunction 1, but without filename
4299
(i.e. only first 40 = 0x28 bytes).
4313
(i.e. only first 40 = 0x28 bytes).
4300
Remarks:
4314
Remarks:
4301
  * The function does not support virtual folders such as /, /rd and
4315
  * The function does not support virtual folders such as /, /rd and
4302
    root folders like /rd/1.
4316
    root folders like /rd/1.
4303
 
4317
 
4304
======================================================================
4318
======================================================================
4305
===== Function 70, subfunction 6 - set attributes of file/folder. ====
4319
===== Function 70, subfunction 6 - set attributes of file/folder. ====
4306
======================================================================
4320
======================================================================
4307
Parameters:
4321
Parameters:
4308
  * eax = 70 - function number
4322
  * eax = 70 - function number
4309
  * ebx = pointer to the information structure
4323
  * ebx = pointer to the information structure
4310
Format of the information structure:
4324
Format of the information structure:
4311
  * +0: dword: 6 = subfunction number
4325
  * +0: dword: 6 = subfunction number
4312
  * +4: dword: 0 (reserved)
4326
  * +4: dword: 0 (reserved)
4313
  * +8: dword: 0 (reserved)
4327
  * +8: dword: 0 (reserved)
4314
  * +12 = +0xC: dword: 0 (reserved)
4328
  * +12 = +0xC: dword: 0 (reserved)
4315
  * +16 = +0x10: dword: pointer to buffer with attributes (32 bytes)
4329
  * +16 = +0x10: dword: pointer to buffer with attributes (32 bytes)
4316
  * +20 = +0x14: ASCIIZ-name of file, the rules of names forming are
4330
  * +20 = +0x14: ASCIIZ-name of file, the rules of names forming are
4317
    given in the general description
4331
    given in the general description
4318
    or
4332
    or
4319
  * +20 = +0x14: db 0
4333
  * +20 = +0x14: db 0
4320
  * +21 = +0x15: dd pointer to ASCIIZ-string with file name
4334
  * +21 = +0x15: dd pointer to ASCIIZ-string with file name
4321
Returned value:
4335
Returned value:
4322
  * eax = 0 - success, otherwise file system error code
4336
  * eax = 0 - success, otherwise file system error code
4323
  * ebx destroyed
4337
  * ebx destroyed
4324
File attributes are first 32 bytes in BDFE (block of data
4338
File attributes are first 32 bytes in BDFE (block of data
4325
for folder entry), explained in the description of subfunction 1
4339
for folder entry), explained in the description of subfunction 1
4326
(that is, without name and size of file). Attribute
4340
(that is, without name and size of file). Attribute
4327
file/folder/volume label (bits 3,4 in dword +0) is not changed.
4341
file/folder/volume label (bits 3,4 in dword +0) is not changed.
4328
Byte +4 (name format) is ignored.
4342
Byte +4 (name format) is ignored.
4329
Remarks:
4343
Remarks:
4330
  * The function does not support virtual folders such as /, /rd and
4344
  * The function does not support virtual folders such as /, /rd and
4331
    root folders like /rd/1.
4345
    root folders like /rd/1.
4332
  * The function is not supported for CD (returns error code 2).
4346
  * The function is not supported for CD (returns error code 2).
4333
 
4347
 
4334
======================================================================
4348
======================================================================
4335
=========== Function 70, subfunction 7 - start application. ==========
4349
=========== Function 70, subfunction 7 - start application. ==========
4336
======================================================================
4350
======================================================================
4337
Parameters:
4351
Parameters:
4338
  * eax = 70 - function number
4352
  * eax = 70 - function number
4339
  * ebx = pointer to the information structure
4353
  * ebx = pointer to the information structure
4340
Format of the information structure:
4354
Format of the information structure:
4341
  * +0: dword: 7 = subfunction number
4355
  * +0: dword: 7 = subfunction number
4342
  * +4: dword: flags field:
4356
  * +4: dword: flags field:
4343
    * áèò 0: start process as debugged
4357
    * áèò 0: start process as debugged
4344
    * other bits are reserved and must be set to 0
4358
    * other bits are reserved and must be set to 0
4345
  * +8: dword: 0 or pointer to ASCIIZ-string with parameters
4359
  * +8: dword: 0 or pointer to ASCIIZ-string with parameters
4346
  * +12 = +0xC: dword: 0 (reserved)
4360
  * +12 = +0xC: dword: 0 (reserved)
4347
  * +16 = +0x10: dword: 0 (reserved)
4361
  * +16 = +0x10: dword: 0 (reserved)
4348
  * +20 = +0x14: ASCIIZ-name of file, the rules of names forming are
4362
  * +20 = +0x14: ASCIIZ-name of file, the rules of names forming are
4349
    given in the general description
4363
    given in the general description
4350
    or
4364
    or
4351
  * +20 = +0x14: db 0
4365
  * +20 = +0x14: db 0
4352
  * +21 = +0x15: dd pointer to ASCIIZ-string with file name
4366
  * +21 = +0x15: dd pointer to ASCIIZ-string with file name
4353
Returned value:
4367
Returned value:
4354
  * eax > 0 - program is loaded, eax contains PID
4368
  * eax > 0 - program is loaded, eax contains PID
4355
  * eax < 0 - an error has occured, -eax contains
4369
  * eax < 0 - an error has occured, -eax contains
4356
    file system error code
4370
    file system error code
4357
  * ebx destroyed
4371
  * ebx destroyed
4358
Remarks:
4372
Remarks:
4359
  * Command line must be terminated by the character with the code 0
4373
  * Command line must be terminated by the character with the code 0
4360
    (ASCIIZ-string); function takes into account either all characters
4374
    (ASCIIZ-string); function takes into account either all characters
4361
    up to terminating zero inclusively or first 256 character
4375
    up to terminating zero inclusively or first 256 character
4362
    regarding what is less.
4376
    regarding what is less.
4363
  * If the process is started as debugged, it is created in
4377
  * If the process is started as debugged, it is created in
4364
    the suspended state; to run use subfunction 5 of function 69.
4378
    the suspended state; to run use subfunction 5 of function 69.
4365
 
4379
 
4366
======================================================================
4380
======================================================================
4367
========== Function 70, subfunction 8 - delete file/folder. ==========
4381
========== Function 70, subfunction 8 - delete file/folder. ==========
4368
======================================================================
4382
======================================================================
4369
Parameters:
4383
Parameters:
4370
  * eax = 70 - function number
4384
  * eax = 70 - function number
4371
  * ebx = pointer to the information structure
4385
  * ebx = pointer to the information structure
4372
Format of the information structure:
4386
Format of the information structure:
4373
  * +0: dword: 8 = subfunction number
4387
  * +0: dword: 8 = subfunction number
4374
  * +4: dword: 0 (reserved)
4388
  * +4: dword: 0 (reserved)
4375
  * +8: dword: 0 (reserved)
4389
  * +8: dword: 0 (reserved)
4376
  * +12 = +0xC: dword: 0 (reserved)
4390
  * +12 = +0xC: dword: 0 (reserved)
4377
  * +16 = +0x10: dword: 0 (reserved)
4391
  * +16 = +0x10: dword: 0 (reserved)
4378
  * +20 = +0x14: ASCIIZ-name of file, the rules of names forming are
4392
  * +20 = +0x14: ASCIIZ-name of file, the rules of names forming are
4379
    given in the general description
4393
    given in the general description
4380
    or
4394
    or
4381
  * +20 = +0x14: db 0
4395
  * +20 = +0x14: db 0
4382
  * +21 = +0x15: dd pointer to ASCIIZ-string with file name
4396
  * +21 = +0x15: dd pointer to ASCIIZ-string with file name
4383
Returned value:
4397
Returned value:
4384
  * eax = 0 - success, otherwise file system error code
4398
  * eax = 0 - success, otherwise file system error code
4385
  * ebx destroyed
4399
  * ebx destroyed
4386
Remarks:
4400
Remarks:
4387
  * The function is not supported for CD (returns error code 2).
4401
  * The function is not supported for CD (returns error code 2).
4388
  * The function can delete only empty folders (attempt to delete
4402
  * The function can delete only empty folders (attempt to delete
4389
    nonempty folder results in error with code 10, "access denied").
4403
    nonempty folder results in error with code 10, "access denied").
4390
 
4404
 
4391
======================================================================
4405
======================================================================
4392
============= Function 70, subfunction 9 - create folder. ============
4406
============= Function 70, subfunction 9 - create folder. ============
4393
======================================================================
4407
======================================================================
4394
Parameters:
4408
Parameters:
4395
  * eax = 70 - function number
4409
  * eax = 70 - function number
4396
  * ebx = pointer to the information structure
4410
  * ebx = pointer to the information structure
4397
Format of the information structure:
4411
Format of the information structure:
4398
  * +0: dword: 9 = subfunction number
4412
  * +0: dword: 9 = subfunction number
4399
  * +4: dword: 0 (reserved)
4413
  * +4: dword: 0 (reserved)
4400
  * +8: dword: 0 (reserved)
4414
  * +8: dword: 0 (reserved)
4401
  * +12 = +0xC: dword: 0 (reserved)
4415
  * +12 = +0xC: dword: 0 (reserved)
4402
  * +16 = +0x10: dword: 0 (reserved)
4416
  * +16 = +0x10: dword: 0 (reserved)
4403
  * +20 = +0x14: ASCIIZ-name of folder, the rules of names forming are
4417
  * +20 = +0x14: ASCIIZ-name of folder, the rules of names forming are
4404
    given in the general description
4418
    given in the general description
4405
    or
4419
    or
4406
  * +20 = +0x14: db 0
4420
  * +20 = +0x14: db 0
4407
  * +21 = +0x15: dd pointer to ASCIIZ-string with folder name
4421
  * +21 = +0x15: dd pointer to ASCIIZ-string with folder name
4408
Returned value:
4422
Returned value:
4409
  * eax = 0 - success, otherwise file system error code
4423
  * eax = 0 - success, otherwise file system error code
4410
  * ebx destroyed
4424
  * ebx destroyed
4411
Remarks:
4425
Remarks:
4412
  * The function is not supported for CD (returns error code 2).
4426
  * The function is not supported for CD (returns error code 2).
4413
  * The parent folder must already exist.
4427
  * The parent folder must already exist.
4414
  * If target folder already exists, function returns success (eax=0).
4428
  * If target folder already exists, function returns success (eax=0).
4415
 
4429
 
4416
======================================================================
4430
======================================================================
4417
========== Function 71, subfunction 1 - set window caption. ==========
4431
========== Function 71, subfunction 1 - set window caption. ==========
4418
======================================================================
4432
======================================================================
4419
Parameters:
4433
Parameters:
4420
  * eax = 71 - function number
4434
  * eax = 71 - function number
4421
  * ebx = 1 - subfunction number
4435
  * ebx = 1 - subfunction number
4422
  * ecx = pointer to caption string
4436
  * ecx = pointer to caption string
4423
Returned value:
4437
Returned value:
4424
  * function does not return value
4438
  * function does not return value
4425
Remarks:
4439
Remarks:
4426
  * String must be in the ASCIIZ-format. Disregarding real string
4440
  * String must be in the ASCIIZ-format. Disregarding real string
4427
    length, no more than 255 characters are drawn.
4441
    length, no more than 255 characters are drawn.
4428
  * Pass NULL in ecx to remove caption.
4442
  * Pass NULL in ecx to remove caption.
4429
 
4443
 
4430
======================================================================
4444
======================================================================
4431
=============== Function 72 - send message to a window. ==============
4445
=============== Function 72 - send message to a window. ==============
4432
======================================================================
4446
======================================================================
4433
 
4447
 
4434
- Subfunction 1 - send message with parameter to the active window. --
4448
- Subfunction 1 - send message with parameter to the active window. --
4435
Parameters:
4449
Parameters:
4436
  * eax = 72 - function number
4450
  * eax = 72 - function number
4437
  * ebx = 1 - subfunction number
4451
  * ebx = 1 - subfunction number
4438
  * ecx = event code: 2 or 3
4452
  * ecx = event code: 2 or 3
4439
  * edx = parameter: key code for ecx=2, button identifier for ecx=3
4453
  * edx = parameter: key code for ecx=2, button identifier for ecx=3
4440
Returned value:
4454
Returned value:
4441
  * eax = 0 - success
4455
  * eax = 0 - success
4442
  * eax = 1 - buffer is full
4456
  * eax = 1 - buffer is full
4443
 
4457
 
4444
======================================================================
4458
======================================================================
4445
=============== Function -1 - terminate thread/process ===============
4459
=============== Function -1 - terminate thread/process ===============
4446
======================================================================
4460
======================================================================
4447
Parameters:
4461
Parameters:
4448
  * eax = -1 - function number
4462
  * eax = -1 - function number
4449
Returned value:
4463
Returned value:
4450
  * function does not return neither value nor control
4464
  * function does not return neither value nor control
4451
Remarks:
4465
Remarks:
4452
  * If the process did not create threads obviously, it has only
4466
  * If the process did not create threads obviously, it has only
4453
    one thread, which termination results in process termination.
4467
    one thread, which termination results in process termination.
4454
  * If the current thread is last in the process, its termination
4468
  * If the current thread is last in the process, its termination
4455
    also results in process terminates.
4469
    also results in process terminates.
4456
  * This function terminates the current thread. Other thread can be
4470
  * This function terminates the current thread. Other thread can be
4457
    killed by call to subfunction 2 of function 18.
4471
    killed by call to subfunction 2 of function 18.
4458
 
4472
 
4459
======================================================================
4473
======================================================================
4460
=========================== List of events ===========================
4474
=========================== List of events ===========================
4461
======================================================================
4475
======================================================================
4462
Next event can be retrieved by the call of one from functions 10
4476
Next event can be retrieved by the call of one from functions 10
4463
(to wait for event), 11 (to check without waiting), 23
4477
(to wait for event), 11 (to check without waiting), 23
4464
(to wait during the given time).
4478
(to wait during the given time).
4465
These functions return only those events, which enter into a mask set
4479
These functions return only those events, which enter into a mask set
4466
by function 40. By default it is first three,
4480
by function 40. By default it is first three,
4467
there is enough for most applications.
4481
there is enough for most applications.
4468
Codes of events:
4482
Codes of events:
4469
  * 1 = redraw event (is reset by call to function 0)
4483
  * 1 = redraw event (is reset by call to function 0)
4470
  * 2 = key on keyboard is pressed (acts, only when the window is
4484
  * 2 = key on keyboard is pressed (acts, only when the window is
4471
    active) or hotkey is pressed; is reset, when all keys from
4485
    active) or hotkey is pressed; is reset, when all keys from
4472
    the buffer are read out by function 2
4486
    the buffer are read out by function 2
4473
  * 3 = button is pressed, defined earlier by function 8
4487
  * 3 = button is pressed, defined earlier by function 8
4474
    (or close button, created implicitly by function 0;
4488
    (or close button, created implicitly by function 0;
4475
    minimize button is handled by the system and sends no message;
4489
    minimize button is handled by the system and sends no message;
4476
    acts, only when the window is active;
4490
    acts, only when the window is active;
4477
    is reset when all buttons from the buffer
4491
    is reset when all buttons from the buffer
4478
    are read out by function 17)
4492
    are read out by function 17)
4479
  * 4 = reserved (in current implementation never comes even after
4493
  * 4 = reserved (in current implementation never comes even after
4480
    unmasking by function 40)
4494
    unmasking by function 40)
4481
  * 5 = the desktop background is redrawed (is reset automatically
4495
  * 5 = the desktop background is redrawed (is reset automatically
4482
    after redraw, so if in redraw time program does not wait and
4496
    after redraw, so if in redraw time program does not wait and
4483
    does not check events, it will not remark this event)
4497
    does not check events, it will not remark this event)
4484
  * 6 = mouse event (something happened - button pressing or moving;
4498
  * 6 = mouse event (something happened - button pressing or moving;
4485
    is reset at reading)
4499
    is reset at reading)
4486
  * 7 = IPC event (see function 60 -
4500
  * 7 = IPC event (see function 60 -
4487
    Inter Process Communication; is reset at reading)
4501
    Inter Process Communication; is reset at reading)
4488
  * 8 = network event (is reset at reading)
4502
  * 8 = network event (is reset at reading)
4489
  * 9 = debug event (is reset at reading; see
4503
  * 9 = debug event (is reset at reading; see
4490
    debug subsystem)
4504
    debug subsystem)
4491
  * 16..31 = event with appropriate IRQ
4505
  * 16..31 = event with appropriate IRQ
4492
    (16=IRQ0, 31=IRQ15) (is reset after reading all IRQ data)
4506
    (16=IRQ0, 31=IRQ15) (is reset after reading all IRQ data)
4493
 
4507
 
4494
======================================================================
4508
======================================================================
4495
=================== Error codes of the file system ===================
4509
=================== Error codes of the file system ===================
4496
======================================================================
4510
======================================================================
4497
  * 0 = success
4511
  * 0 = success
4498
  * 1 = base and/or partition of a hard disk is not defined
4512
  * 1 = base and/or partition of a hard disk is not defined
4499
    (by subfunctions 7, 8 of function 21)
4513
    (by subfunctions 7, 8 of function 21)
4500
  * 2 = function is not supported for the given file system
4514
  * 2 = function is not supported for the given file system
4501
  * 3 = unknown file system
4515
  * 3 = unknown file system
4502
  * 4 = reserved, is never returned in the current implementation
4516
  * 4 = reserved, is never returned in the current implementation
4503
  * 5 = file not found
4517
  * 5 = file not found
4504
  * 6 = end of file, EOF
4518
  * 6 = end of file, EOF
4505
  * 7 = pointer lies outside of application memory
4519
  * 7 = pointer lies outside of application memory
4506
  * 8 = disk is full
4520
  * 8 = disk is full
4507
  * 9 = FAT table is destroyed
4521
  * 9 = FAT table is destroyed
4508
  * 10 = access denied
4522
  * 10 = access denied
4509
  * 11 = device error
4523
  * 11 = device error
4510
Application start functions can return also following errors:
4524
Application start functions can return also following errors:
4511
  * 30 = 0x1E = not enough memory
4525
  * 30 = 0x1E = not enough memory
4512
  * 31 = 0x1F = file is not executable
4526
  * 31 = 0x1F = file is not executable
4513
  * 32 = 0x20 = too many processes
4527
  * 32 = 0x20 = too many processes
4514
>
4528
>
4515
>
4529
>