Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
546 diamond 1
SYSTEM FUNCTIONS of OS Kolibri 0.7.0.0
114 mikedld 2
 
3
Number of the function is located in the register eax.
118 diamond 4
The call of the system function is executed by "int 0x40" command.
5
All registers except explicitly declared in the returned value,
6
    including eflags, are preserved.
114 mikedld 7
 
8
 
9
======================================================================
10
============== Function 0 - define and draw the window. ==============
11
======================================================================
12
Defines an application window. Draws a frame of the window, header and
133 diamond 13
working area. For skinned windows defines standard close and minimize
14
buttons.
114 mikedld 15
Parameters:
118 diamond 16
  * eax = 0 - function number
114 mikedld 17
  * ebx = [coordinate on axis x]*65536 + [size on axis x]
18
  * ecx = [coordinate on axis y]*65536 + [size on axis y]
19
  * edx = 0xXYRRGGBB, where:
20
    * Y = style of the window:
131 diamond 21
      * Y=0 - type I - fixed-size window
118 diamond 22
      * Y=1 - only define window area, draw nothing
131 diamond 23
      * Y=2 - type II - variable-size window
24
      * Y=3 - skinned window
549 spraid 25
      * Y=4 - skinned window with fixed sizes
118 diamond 26
      * other possible values (from 4 up to 15) are reserved,
114 mikedld 27
        function call with such Y is ignored
118 diamond 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)
114 mikedld 30
    * X = DCBA (bits)
118 diamond 31
      * A = 1 - window has caption; for style Y=3 caption string
32
                  must be passed in edi, for other styles use
33
                  subfunction 1 of function 71
34
      * B = 1 - coordinates of all graphics primitives are relative to
35
                  window client area
303 mikedld 36
      * C = 1 - don't fill working area on window draw
118 diamond 37
      * D = 0 - normal filling of the working area, 1 - gradient
38
    The following parameters are intended for windows
39
    of a type I and II, and ignored for styles Y=1,3:
40
  * esi = 0xXYRRGGBB - color of the header
41
    * RR, GG, BB define color
114 mikedld 42
    * Y=0 - usual window, Y=1 - unmovable window
118 diamond 43
    * X defines a gradient of header: X=0 - no gradient,
114 mikedld 44
      X=8 - usual gradient,
45
      for windows of a type II X=4 - negative gradient
118 diamond 46
    * other values of X and Y are reserved
47
  * edi = 0x00RRGGBB - color of the frame
114 mikedld 48
Returned value:
49
  * function does not return value
50
Remarks:
118 diamond 51
  * Position and sizes of the window are installed by the first
52
    call of this function and are ignored at subsequent; to change
53
    position and/or sizes of already created window use function 67.
54
  * For windows with style Y=3 and caption (A=1) caption string is set
55
    by the first call of this function and is ignored at subsequent
56
    (strictly speaking, is ignored after a call to subfunction 2
57
    of function 12 - end redraw); to change caption of already created
58
    window use subfunction 1 of function 71.
59
  * If the window has appropriate styles, position and/or sizes can be
60
    changed by user. Current position and sizes can be obtained
61
    by function 9.
62
  * The window must fit on the screen. If the transferred
63
    coordinates and sizes do not satisfy to this condition,
64
    appropriate coordinate (or, probably, both) is considered as zero,
131 diamond 65
    and if it does not help too, the appropriate size
118 diamond 66
    (or, probably, both) is installed in a size of the screen.
114 mikedld 67
 
131 diamond 68
    Further let us designate xpos,ypos,xsize,ysize - values passed
69
    in ebx,ecx. The coordinates are resulted concerning
118 diamond 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).
72
  * The sizes of the window are understood in sence of coordinates
73
    of the right lower corner. This concerns all other functions too.
74
    It means, that the real sizes are on 1 pixel more.
75
  * The window of type I looks as follows:
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
78
      right lower (xsize-1,min(25,ysize)) color indicated in esi
79
      (taking a gradient into account)
80
    * if ysize>=26, fill the working area of the window -
81
      rectangle with the left upper corner (1,21) and right lower
82
      (xsize-1,ysize-1) (sizes (xsize-1)*(ysize-21)) with color
83
      indicated in edx (taking a gradient into account)
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
86
  * The window of style Y=1 looks as follows:
114 mikedld 87
    * completely defined by the application
118 diamond 88
  * The window of type II looks as follows:
89
    * draw external frame of width 1 pixel with the "shaded" color
90
      edi (all components of the color decrease twice)
91
    * draw intermediate frame of width 3 pixels with color edi
92
    * draw internal frame of width 1 pixel with the "shaded" color edi
114 mikedld 93
    * draw header - rectangle with the left upper corner (4,4)
118 diamond 94
      and right lower (xsize-4,min(20,ysize)) color, indicated in esi
95
      (taking a gradient into account)
96
    * if ysize>=26, fill the working area of the window -
114 mikedld 97
      rectangle with the left upper corner (5,20) and right lower
118 diamond 98
      (xsize-5,ysize-5) with color indicated in edx
99
      (taking a gradient into account)
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
102
  * The skinned window looks as follows:
114 mikedld 103
    * draw external frame of width 1 pixel
118 diamond 104
      with color 'outer' from the skin
105
    * draw intermediate frame of width 3 pixel
106
      with color 'frame' from the skin
107
    * draw internal frame of width 1 pixel
108
      with color 'inner' from the skin
109
    * draw header (on bitmaps from the skin) in a rectangle
114 mikedld 110
      (0,0) - (xsize,_skinh-1)
118 diamond 111
    * if ysize>=26, fill the working area of the window -
112
      rectangle with the left upper corner (5,_skinh) and right lower
113
      (xsize-5,ysize-5) with color indicated in edx
114
      (taking a gradient into account)
133 diamond 115
    * define two standard buttons: close and minimize
114 mikedld 116
      (see function 8)
118 diamond 117
    * if A=1 and edi contains (nonzero) pointer to caption string,
118
      it is drawn in place in header defined in the skin
119
    * value _skinh is accessible as the result of call
120
      subfunction 4 of function 48
114 mikedld 121
 
122
======================================================================
118 diamond 123
================ Function 1 - put pixel in the window. ===============
114 mikedld 124
======================================================================
125
Parameters:
118 diamond 126
  * eax = 1 - function number
127
  * ebx = x-coordinate (relative to the window)
128
  * ecx = y-coordinate (relative to the window)
129
  * edx = 0x00RRGGBB - color of a pixel
130
    edx = 0x01xxxxxx - invert color of a pixel
131
          (low 24 bits are ignored)
114 mikedld 132
Returned value:
133
  * function does not return value
134
 
135
======================================================================
118 diamond 136
============ Function 2 - get the code of the pressed key. ===========
114 mikedld 137
======================================================================
138
Takes away the code of the pressed key from the buffer.
139
Parameters:
118 diamond 140
  * eax = 2 - function number
114 mikedld 141
Returned value:
118 diamond 142
  * if the buffer is empty, function returns eax=1
143
  * if the buffer is not empty, function returns al=0,
144
    ah=code of the pressed key, high word of eax is zero
145
  * if there is "hotkey", function returns al=2,
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
148
    of pressing a hotkey
114 mikedld 149
Remarks:
118 diamond 150
  * There is a common system buffer of the pressed keys
151
    by a size of 120 bytes, organized as queue.
152
  * There is one more common system buffer on 120 "hotkeys".
153
  * If the application with the inactive window calls this function,
154
    the buffer of the pressed keys is considered to be empty.
155
  * By default this function returns ASCII-codes; to switch
156
    to the scancodes mode (and back) use function 66.
157
    However, hotkeys are always notificated as scancodes.
158
  * To find out, what keys correspond to what codes, start
159
    the application keyascii and scancode.
160
  * Scancodes come directly from keyboard and are fixed;
161
    ASCII-codes turn out with usage of the conversion tables,
162
    which can be set by subfunction 2 of function 21
163
    and get by subfunction 2 of function 26.
164
  * As a consequence, ASCII-codes take into account current
165
    keyboard layout (rus/en) as opposed to scancodes.
166
  * This function notifies only about those hotkeys, which were
167
    defined by this thread by subfunction 4 of function 66.
114 mikedld 168
 
169
======================================================================
118 diamond 170
==================== Function 3 - get system time. ===================
114 mikedld 171
======================================================================
172
Parameters:
118 diamond 173
  * eax = 3 - function number
114 mikedld 174
Returned value:
175
  * eax = 0x00SSMMHH, where HH:MM:SS = Hours:Minutes:Seconds
118 diamond 176
  * each item is BCD-number, for example,
177
    for time 23:59:59 function returns 0x00595923
114 mikedld 178
Remarks:
118 diamond 179
  * See also subfunction 9 of function 26 - get time from
180
    the moment of start of the system; it is more convenient, because
181
    returns simply DWORD-value of the time counter.
182
  * System time can be set by function 22.
114 mikedld 183
 
184
======================================================================
118 diamond 185
============ Function 4 - draw text string in the window. ============
114 mikedld 186
======================================================================
187
Parameters:
118 diamond 188
  * eax = 4 - function number
114 mikedld 189
  * ebx = [coordinate on axis x]*65536 + [coordinate on axis y]
190
  * ecx = 0xX0RRGGBB, where
118 diamond 191
    * RR, GG, BB specify text color
139 diamond 192
    * X=ABnn (bits):
185 heavyiron 193
    * nn specifies the used font: 0=system monospaced,
194
      1=system font of variable width
139 diamond 195
    * A=0 - output esi characters, A=1 - output ASCIIZ-string
196
    * B=1 - fill background with the color edi
118 diamond 197
  * edx = pointer to the beginning of the string
139 diamond 198
  * esi = for A=0 length of the string, must not exceed 255;
199
          for A=1 is ignored
114 mikedld 200
Returned value:
201
  * function does not return value
202
Remarks:
118 diamond 203
  * First system font is read out at loading from the file char.mt,
204
    second - from char2.mt.
205
  * Both fonts have height 9 pixels, width of the monospaced font
206
    is equal to 6 pixels.
114 mikedld 207
 
208
======================================================================
118 diamond 209
========================= Function 5 - delay. ========================
114 mikedld 210
======================================================================
211
Delays execution of the program on the given time.
212
Parameters:
118 diamond 213
  * eax = 5 - function number
114 mikedld 214
  * ebx = time in the 1/100 of second
215
Returned value:
216
  * function does not return value
217
Remarks:
118 diamond 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
220
    to transfer control to the next process (to complete a current
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.
114 mikedld 225
 
226
======================================================================
118 diamond 227
============== Function 6 - read the file from ramdisk. ==============
114 mikedld 228
======================================================================
229
Parameters:
118 diamond 230
  * eax = 6 - function number
231
  * ebx = pointer to the filename
232
  * ecx = number of start block, beginning from 1;
233
    ecx=0 - read from the beginning of the file (same as ecx=1)
234
  * edx = number of blocks to read;
235
    edx=0 - read one block (same as edx=1)
236
  * esi = pointer to memory area for the data
114 mikedld 237
Returned value:
118 diamond 238
  * eax = file size in bytes, if the file was successfully read
239
  * eax = -1, if the file was not found
114 mikedld 240
Remarks:
118 diamond 241
  * This function is out-of-date; function 70 allows
242
    to fulfil the same operations with the extended possibilities.
114 mikedld 243
  * Block = 512 bytes.
118 diamond 244
  * 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
246
    the program will "fall", if the file will appear too large and can
247
    not be placed in the program memory.
248
  * The filename must be either in the format 8+3 characters
249
    (first 8 characters - name itself, last 3 - extension,
250
    the short names and extensions are supplemented with spaces),
251
    or in the format 8.3 characters "FILE.EXT"/"FILE.EX "
252
    (name no more than 8 characters, dot, extension 3 characters
253
    supplemented if necessary by spaces).
254
    The filename must be written with capital letters. The terminating
255
    character with code 0 is not necessary (not ASCIIZ-string).
256
  * This function does not support folders on the ramdisk.
114 mikedld 257
 
258
======================================================================
259
=============== Function 7 - draw image in the window. ===============
260
======================================================================
118 diamond 261
Paramters:
262
  * eax = 7 - function number
263
  * ebx = pointer to the image in the format BBGGRRBBGGRR...
114 mikedld 264
  * ecx = [size on axis x]*65536 + [size on axis y]
265
  * edx = [coordinate on axis x]*65536 + [coordinate on axis y]
266
Returned value:
267
  * function does not return value
268
Remarks:
118 diamond 269
  * Coordinates of the image are coordinates of the upper left corner
270
    of the image relative to the window.
114 mikedld 271
  * Size of the image in bytes is 3*xsize*ysize.
272
 
273
======================================================================
274
=============== Function 8 - define/delete the button. ===============
275
======================================================================
118 diamond 276
Parameters for button definition:
277
  * eax = 8 - function number
114 mikedld 278
  * ebx = [coordinate on axis x]*65536 + [size on axis x]
279
  * ecx = [coordinate on axis y]*65536 + [size on axis y]
280
  * edx = 0xXYnnnnnn, where:
281
    * nnnnnn = identifier of the button
118 diamond 282
    * high (31st) bit of edx is cleared
283
    * 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
114 mikedld 285
      at pressing the button
118 diamond 286
  * esi = 0x00RRGGBB - color of the button
287
Parameters for button deleting:
288
  * eax = 8 - function number
114 mikedld 289
  * edx = 0x80nnnnnn, where nnnnnn - identifier of the button
290
Returned value:
291
  * function does not return value
292
Remarks:
118 diamond 293
  * Sizes of the button must be more than 0 and less than 0x8000.
131 diamond 294
  * For skinned windows definition of the window
118 diamond 295
    (call of 0th function) creates two standard buttons -
296
    for close of the window with identifier 1 and
297
    for minimize of the window with identifier 0xffff.
298
  * The creation of two buttons with same identifiers is admitted.
299
  * The button with the identifier 0xffff at pressing is interpreted
300
    by the system as the button of minimization, the system handles
301
    such pressing independently, not accessing to the application.
302
    In rest it is usual button.
303
  * Total number of buttons for all applications is limited to 4095.
114 mikedld 304
 
305
======================================================================
118 diamond 306
============ Function 9 - information on execution thread. ===========
114 mikedld 307
======================================================================
308
Parameters:
118 diamond 309
  * eax = 9 - function number
310
  * ebx = pointer to 1-Kb buffer
311
  * ecx = number of the slot of the thread
312
    ecx = -1 - get information on the current thread
114 mikedld 313
Returned value:
118 diamond 314
  * eax = maximum number of the slot of a thread
315
  * buffer pointed to by ebx contains the following information:
316
    * +0: dword: usage of the processor (how many time units
317
      per second leaves on execution of this thread)
114 mikedld 318
    * +4: word: position of the window of thread in the window stack
118 diamond 319
    * +6: word: (has no relation to the specified thread)
320
      number of the thread slot, which window has in the window stack
321
      position ecx
114 mikedld 322
    * +8: word: reserved
323
    * +10 = +0xA: 11 bytes: name of the process
118 diamond 324
      (name of corresponding executable file in the format 8+3)
142 diamond 325
    * +21 = +0x15: byte: reserved, this byte is not changed
114 mikedld 326
    * +22 = +0x16: dword: address of the process in memory
327
    * +26 = +0x1A: dword: size of used memory - 1
328
    * +30 = +0x1E: dword: identifier (PID/TID)
118 diamond 329
    * +34 = +0x22: dword: coordinate of the thread window on axis x
330
    * +38 = +0x26: dword: coordinate of the thread window on axis y
331
    * +42 = +0x2A: dword: size of the thread window on axis x
332
    * +46 = +0x2E: dword: size of the thread window on axis y
333
    * +50 = +0x32: word: status of the thread slot:
334
      * 0 = thread is running
335
      * 1 = thread is suspended
336
      * 2 = thread is suspended while waiting for event
337
      * 3 = thread is terminating as a result of call to function -1
338
        or under duress as a result of call to subfunction 2
339
        of function 18 or termination of the system
340
      * 4 = thread is terminating as a result of exception
341
      * 5 = thread waits for event
342
      * 9 = requested slot is free, all other information on the slot
343
        is not meaningful
142 diamond 344
    * +52 = +0x34: word: reserved, this word is not changed
345
    * +54 = +0x36: dword: coordinate of the client area on axis x
346
    * +58 = +0x3A: dword: coordinate of the client area on axis y
347
    * +62 = +0x3E: dword: width of the client area
348
    * +66 = +0x42: dword: height of the client area
349
    * +70 = +0x46: byte: state of the window - bitfield
350
      * bit 0 (mask 1): window is maximized
351
      * bit 1 (mask 2): window is minimized to panel
352
      * bit 2 (mask 4): window is rolled up
114 mikedld 353
Remarks:
118 diamond 354
  * Slots are numbered starting from 1.
355
  * Returned value is not a total number of threads, because there
356
    can be free slots.
357
  * When process is starting, system automatically creates
358
    execution thread.
359
  * Function gives information on the thread. Each process has
360
    at least one thread. One process can create many threads,
361
    in this case each thread has its own slot and the fields
362
    +10, +22, +26 in these slots coincide.
363
    Applications have no common way to define whether two threads
114 mikedld 364
    belong to one process.
118 diamond 365
  * The active window - window on top of the window stack -
366
    receives the messages on a keyboard input. For such window
367
    the position in the window stack coincides with returned value.
368
  * Slot 1 corresponds to special system thread, for which:
369
    * the window is in the bottom of the window stack, the fields
370
      +4 and +6 contain value 1
371
    * name of the process - "OS/IDLE" (supplemented by spaces)
372
    * address of the process in memory is 0, size of used memory is
114 mikedld 373
      16 Mb (0x1000000)
374
    * PID=1
142 diamond 375
    * coordinates and sizes of the window and the client area are by
376
      convention set to 0
118 diamond 377
    * status of the slot is always 0 (running)
378
    * the execution time adds of time leaving on operations itself
379
      and idle time in waiting for interrupt (which can be got by call
380
      to subfunction 4 of function 18).
381
  * Beginning from slot 2, the normal applications are placed.
382
  * The normal applications are placed in memory at the address
193 diamond 383
    0x60400000 (kernel constant 'std_application_base_address').
118 diamond 384
    There is no intersection, as each process has its own page table.
385
  * At creation of the thread it is assigned the slot
386
    in the system table and identifier (Process/Thread IDentifier =
387
    PID/TID), which do not vary with time for given thread.
388
    After completion of the thread its slot can be anew used
389
    for another thread. The thread identifier can not be assigned
390
    to other thread even after completion of this thread.
391
    Identifiers, assigned to new threads, grow monotonously.
392
  * If the thread has not yet defined the window by call to
393
    function 0, the position and the sizes
394
    of its window are considered to be zero.
142 diamond 395
  * Coordinates of the client area are relative to the window.
118 diamond 396
  * At the moment only the part of the buffer by a size
142 diamond 397
    71 = 0x37 bytes is used. Nevertheless it is recommended to use
118 diamond 398
    1-Kb buffer for the future compatibility, in the future
399
    some fields can be added.
114 mikedld 400
 
401
======================================================================
118 diamond 402
==================== Function 10 - wait for event. ===================
114 mikedld 403
======================================================================
118 diamond 404
If the message queue is empty, waits for appearance of the message
405
in queue. In this state thread does not consume CPU time.
114 mikedld 406
Then reads out the message from queue.
407
 
408
Parameters:
118 diamond 409
  * eax = 10 - function number
114 mikedld 410
Returned value:
118 diamond 411
  * eax = event (see the list of events)
114 mikedld 412
Remarks:
118 diamond 413
  * Those events are taken into account only which enter into
414
    a mask set by function 40. By default it is
415
    redraw, key and button events.
416
  * To check, whether there is a message in queue, use function 11.
417
    To wait for no more than given time, use function 23.
114 mikedld 418
 
118 diamond 419
======================================================================
420
=============== Function 11 - check for event, no wait. ==============
421
======================================================================
422
If the message queue contains event, function reads out
423
and return it. If the queue is empty, function returns 0.
114 mikedld 424
Parameters:
118 diamond 425
  * eax = 11 - function number
114 mikedld 426
Returned value:
427
  * eax = 0 - message queue is empty
118 diamond 428
  * else eax = event (see the list of events)
114 mikedld 429
Remarks:
118 diamond 430
  * Those events are taken into account only, which enter into
431
    a mask set by function 40. By default it is
432
    redraw, key and button events.
433
  * To wait for event, use function 10.
434
    To wait for no more than given time, use function 23.
114 mikedld 435
 
436
======================================================================
118 diamond 437
=============== Function 12 - begin/end window redraw. ===============
114 mikedld 438
======================================================================
439
 
139 diamond 440
---------------- Subfunction 1 - begin window redraw. ----------------
114 mikedld 441
Parameters:
118 diamond 442
  * eax = 12 - function number
443
  * ebx = 1 - subfunction number
114 mikedld 444
Returned value:
445
  * function does not return value
446
 
139 diamond 447
----------------- Subfunction 2 - end window redraw. -----------------
114 mikedld 448
Parameters:
118 diamond 449
  * eax = 12 - function number
450
  * ebx = 2 - subfunction number
114 mikedld 451
Returned value:
452
  * function does not return value
453
Remarks:
118 diamond 454
  * Subfunction 1 deletes all buttons defined with
455
    function 8, they must be defined again.
114 mikedld 456
 
457
======================================================================
458
============ Function 13 - draw a rectangle in the window. ===========
459
======================================================================
460
Parameters:
118 diamond 461
  * eax = 13 - function number
114 mikedld 462
  * ebx = [coordinate on axis x]*65536 + [size on axis x]
463
  * ecx = [coordinate on axis y]*65536 + [size on axis y]
118 diamond 464
  * edx = color 0xRRGGBB or 0x80RRGGBB for gradient fill
114 mikedld 465
Returned value:
466
  * function does not return value
467
Remarks:
468
  * Coordinates are understood as coordinates of the left upper corner
118 diamond 469
    of a rectangle relative to the window.
114 mikedld 470
 
471
======================================================================
118 diamond 472
=================== Function 14 - get screen size. ===================
114 mikedld 473
======================================================================
474
Parameters:
118 diamond 475
  * eax = 14 - function number
114 mikedld 476
Returned value:
477
  * eax = [xsize]*65536 + [ysize], where
478
  * xsize = x-coordinate of the right lower corner of the screen =
118 diamond 479
            horizontal size - 1
114 mikedld 480
  * ysize = y-coordinate of the right lower corner of the screen =
118 diamond 481
            vertical size - 1
114 mikedld 482
Remarks:
118 diamond 483
  * See also subfunction 5 of function 48 - get sizes of
484
    working area of the screen.
114 mikedld 485
 
118 diamond 486
======================================================================
487
== Function 15, subfunction 1 - set a size of the background image. ==
488
======================================================================
114 mikedld 489
Parameters:
118 diamond 490
  * eax = 15 - function number
491
  * ebx = 1 - subfunction number
114 mikedld 492
  * ecx = width of the image
493
  * edx = height of the image
494
Returned value:
495
  * function does not return value
496
Remarks:
499 diamond 497
  * Before calling subfunctions 2 and 5 you should call this function
485 heavyiron 498
    to set image size!
118 diamond 499
  * For update of the screen (after completion of a series of commands
500
    working with a background) call subfunction 3.
501
  * There is a pair function for get size of the background image -
502
    subfunction 1 of function 39.
114 mikedld 503
 
504
======================================================================
118 diamond 505
=== Function 15, subfunction 2 - put pixel on the background image. ==
114 mikedld 506
======================================================================
507
Parameters:
118 diamond 508
  * eax = 15 - function number
509
  * ebx = 2 - subfunction number
114 mikedld 510
  * ecx = offset
118 diamond 511
  * edx = color of a pixel 0xRRGGBB
114 mikedld 512
Returned value:
513
  * function does not return value
514
Remarks:
118 diamond 515
  * Offset for a pixel with coordinates (x,y) is calculated as
114 mikedld 516
    (x+y*xsize)*3.
499 diamond 517
  * If the given offset exceeds size set by subfunction 1,
118 diamond 518
    the call is ignored.
519
  * For update of the screen (after completion of a series of commands
520
    working with a background) call subfunction 3.
521
  * There is a pair function for get pixel on the background image -
522
    subfunction 2 of function 39.
114 mikedld 523
 
524
======================================================================
525
=========== Function 15, subfunction 3 - redraw background. ==========
526
======================================================================
527
Parameters:
118 diamond 528
  * eax = 15 - function number
529
  * ebx = 3 - subfunction number
114 mikedld 530
Returned value:
531
  * function does not return value
532
 
118 diamond 533
======================================================================
534
== Function 15, subfunction 4 - set drawing mode for the background. =
535
======================================================================
114 mikedld 536
Parameters:
118 diamond 537
  * eax = 15 - function number
538
  * ebx = 4 - subfunction number
539
  * ecx = drawing mode:
114 mikedld 540
    * 1 = tile
541
    * 2 = stretch
542
Returned value:
543
  * function does not return value
544
Remarks:
118 diamond 545
  * For update of the screen (after completion of a series of commands
546
    working with a background) call subfunction 3.
547
  * There is a pair function for get drawing mode of the background -
548
    subfunction 4 of function 39.
114 mikedld 549
 
118 diamond 550
======================================================================
551
===================== Function 15, subfunction 5 =====================
552
============ Put block of pixels on the background image. ============
553
======================================================================
114 mikedld 554
Parameters:
118 diamond 555
  * eax = 15 - function number
556
  * ebx = 5 - subfunction number
557
  * ecx = pointer to the data in the format BBGGRRBBGGRR...
114 mikedld 558
  * edx = offset in data of the background image
118 diamond 559
  * esi = size of data in bytes = 3 * number of pixels
114 mikedld 560
Returned value:
561
  * function does not return value
562
Remarks:
499 diamond 563
  * Offset and size are not checked for correctness.
118 diamond 564
  * Color of each pixel is stored as 3-bytes value BBGGRR.
565
  * Pixels of the background image are written sequentially
566
    from left to right, from up to down.
567
  * 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
569
    working with a background) call subfunction 3.
114 mikedld 570
 
571
======================================================================
546 diamond 572
===================== Function 15, subfunction 6 =====================
573
======== Map background data to the address space of process. ========
574
======================================================================
575
Parameters:
576
  * eax = 15 - function number
577
  * ebx = 6 - subfunction number
578
Returned value:
579
  * eax = pointer to background data, 0 if error
580
Remarks:
581
  * Mapped data are available for read and write.
582
  * Size of background data is 3*xsize*ysize. The system blocks
583
    changes of background sizes while process works with mapped data.
584
  * Color of each pixel is stored as 3-bytes value BBGGRR.
585
  * Pixels of the background image are written sequentially
586
    from left to right, from up to down.
587
 
588
======================================================================
589
===== Function 15, subfunction 7 - close mapped background data. =====
590
======================================================================
591
Parameters:
592
  * eax = 15 - function number
593
  * ebx = 7 - subfunction number
594
  * ecx = pointer to mapped data
595
Returned value:
596
  * eax = 1 - success, 0 - error
597
 
598
======================================================================
118 diamond 599
=============== Function 16 - save ramdisk on a floppy. ==============
114 mikedld 600
======================================================================
601
Parameters:
118 diamond 602
  * eax = 16 - function number
603
  * ebx = 1 or ebx = 2 - on which floppy save
114 mikedld 604
Returned value:
118 diamond 605
  * eax = 0 - success
114 mikedld 606
  * eax = 1 - error
607
 
608
======================================================================
118 diamond 609
======= Function 17 - get the identifier of the pressed button. ======
114 mikedld 610
======================================================================
611
Takes away the code of the pressed button from the buffer.
612
Parameters:
118 diamond 613
  * eax = 17 - function number
114 mikedld 614
Returned value:
118 diamond 615
  * if the buffer is empty, function returns eax=1
616
  * if the buffer is not empty, function returns al=0,
617
    high 24 bits of eax contain button identifier (in particular, ah
618
    contains low byte of the identifier; if all buttons have
619
    the identifier less than 256, ah is enough to distinguish).
114 mikedld 620
Remarks:
118 diamond 621
  * "Buffer" keeps only one button, at pressing the new button the
622
    information about old is lost.
623
  * The call of this function by an application with inactive window
624
    will return answer "buffer is empty".
114 mikedld 625
 
626
======================================================================
118 diamond 627
============ Function 18, subfunction 1 - system shutdown. ===========
114 mikedld 628
======================================================================
629
Parameters:
118 diamond 630
  * eax = 18 - function number
631
  * ebx = 1 - subfunction number
114 mikedld 632
Returned value:
118 diamond 633
  * function always return eax = 0 as tag of success
114 mikedld 634
Remarks:
118 diamond 635
  * On the last step menu of exit from the system appears and waits
636
    response of the user.
637
  * See also subfunction 9, system shutdown with
638
    the parameter to force the choice in the exit menu.
114 mikedld 639
 
640
======================================================================
118 diamond 641
= Function 18, subfunction 2 - terminate process/thread by the slot. =
114 mikedld 642
======================================================================
643
Parameters:
118 diamond 644
  * eax = 18 - function number
645
  * ebx = 2 - subfunction number
114 mikedld 646
  * ecx = number of the slot of process/thread
647
Returned value:
648
  * function does not return value
649
Remarks:
118 diamond 650
  * It is impossible to terminate system thread OS/IDLE (with
651
    number of the slot 1),
652
    it is possible to terminate any normal process/thread.
653
  * See also subfunction 18 - terminate
654
    process/thread by the identifier.
114 mikedld 655
 
118 diamond 656
======================================================================
657
===================== Function 18, subfunction 3 =====================
658
============= Make active the window of the given thread. ============
659
======================================================================
114 mikedld 660
Parameters:
118 diamond 661
  * eax = 18 - function number
662
  * ebx = 3 - subfunction number
663
  * ecx = number of the thread slot
114 mikedld 664
Returned value:
665
  * function does not return value
666
Remarks:
118 diamond 667
  * If correct, but nonexistent slot is given,
668
    some window is made active.
669
  * To find out, which window is active, use subfunction 7.
114 mikedld 670
 
118 diamond 671
======================================================================
672
===================== Function 18, subfunction 4 =====================
673
=========== Get counter of idle time units per one second. ===========
674
======================================================================
675
Idle time units are units, in which the processor stands idle
676
in waiting for interrupt (in the command 'hlt').
114 mikedld 677
 
678
Parameters:
118 diamond 679
  * eax = 18 - function number
680
  * ebx = 4 - subfunction number
114 mikedld 681
Returned value:
118 diamond 682
  * eax = value of the counter of idle time units per one second
114 mikedld 683
 
684
======================================================================
118 diamond 685
========== Function 18, subfunction 5 - get CPU clock rate. ==========
114 mikedld 686
======================================================================
687
Parameters:
118 diamond 688
  * eax = 18 - function number
689
  * ebx = 5 - subfunction number
114 mikedld 690
Returned value:
118 diamond 691
  * eax = clock rate (modulo 2^32 clock ticks = 4GHz)
114 mikedld 692
 
118 diamond 693
======================================================================
694
 Function 18, subfunction 6 - save ramdisk to the file on hard drive.
695
======================================================================
114 mikedld 696
Parameters:
118 diamond 697
  * eax = 18 - function number
698
  * ebx = 6 - subfunction number
341 heavyiron 699
  * ecx = pointer to the full path to file
700
    (for example, "/hd0/1/kolibri/kolibri.img")
114 mikedld 701
Returned value:
118 diamond 702
  * eax = 0 - success
703
  * else eax = error code of the file system
499 diamond 704
Remarks:
118 diamond 705
  * All folders in the given path must exist, otherwise function
706
    returns value 5, "file not found".
114 mikedld 707
 
708
======================================================================
118 diamond 709
=========== Function 18, subfunction 7 - get active window. ==========
114 mikedld 710
======================================================================
711
Parameters:
118 diamond 712
  * eax = 18 - function number
713
  * ebx = 7 - subfunction number
114 mikedld 714
Returned value:
118 diamond 715
  * eax = number of the active window
716
    (number of the slot of the thread with active window)
114 mikedld 717
Remarks:
118 diamond 718
  * Active window is at the top of the window stack and receives
719
    messages on all keyboard input.
720
  * To make a window active, use subfunction 3.
114 mikedld 721
 
118 diamond 722
======================================================================
723
== Function 18, subfunction 8 - disable/enable the internal speaker. =
724
======================================================================
725
If speaker sound is disabled, all calls to subfunction 55 of
726
function 55 are ignored. If speaker sound is enabled,
727
they are routed on builtin speaker.
114 mikedld 728
 
118 diamond 729
------------------- Subsubfunction 1 - get status. -------------------
114 mikedld 730
Parameters:
118 diamond 731
  * eax = 18 - function number
732
  * ebx = 8 - subfunction number
733
  * ecx = 1 - number of the subsubfunction
114 mikedld 734
Returned value:
118 diamond 735
  * eax = 0 - speaker sound is enabled; 1 - disabled
114 mikedld 736
 
118 diamond 737
----------------- Subsubfunction 2 - toggle status. ------------------
738
Toggles states of disable/enable.
114 mikedld 739
Parameters:
118 diamond 740
  * eax = 18 - function number
741
  * ebx = 8 - subfunction number
742
  * ecx = 2 - number of the subsubfunction
114 mikedld 743
Returned value:
744
  * function does not return value
745
 
118 diamond 746
======================================================================
747
== Function 18, subfunction 9 - system shutdown with the parameter. ==
748
======================================================================
114 mikedld 749
Parameters:
118 diamond 750
  * eax = 18 - function number
751
  * ebx = 9 - subfunction number
114 mikedld 752
  * ecx = parameter:
118 diamond 753
    * 1 = on the last step of shutdown save ramdisk on a floppy and
754
      then show the exit menu and request further operations
755
      from the user
756
    * 2 = turn off computer
757
    * 3 = reboot computer
758
    * 4 = restart the kernel from the file 'kernel.mnt' on ramdisk
114 mikedld 759
Returned value:
118 diamond 760
  * at incorrect ecx the registers do not change (i.e. eax=18)
761
  * by correct call function always returns eax=0
762
    as the tag of success
114 mikedld 763
Remarks:
118 diamond 764
  * Do not rely on returned value by incorrect call, it can be
765
    changed in future versions of the kernel.
766
  * It is possible to use subfunction 1, that on the last step
767
    the user makes choice himself.
768
  * It is not recommended to use value ecx=1 (to not irritate the user
769
    with excessive questions); to save ramdisk on a floppy use
770
    function 16 (which admits specification, on which floppy to
771
    write), and to shutdown with the exit menu use already mentioned
772
    subfunction 1.
114 mikedld 773
 
118 diamond 774
======================================================================
775
===== Function 18, subfunction 10 - minimize application window. =====
776
======================================================================
777
Minimizes the own window.
114 mikedld 778
Parameters:
118 diamond 779
  * eax = 18 - function number
780
  * ebx = 10 - subfunction number
114 mikedld 781
Returned value:
782
  * function does not return value
783
Remarks:
118 diamond 784
  * The minimized window from the point of view of function 9
785
    keeps position and sizes.
786
  * Restoring of an application window occurs at its activation by
787
    subfunction 3.
788
  * Usually there is no necessity to minimize/restire a window
789
    obviously: minimization of a window is carried out by the system
790
    at pressing the minimization button (for skinned windows
791
    it is defined automatically by function 0,
792
    for other windows it can be defined manually by function 8),
793
    restore of a window is done by the application '@panel'.
114 mikedld 794
 
795
======================================================================
118 diamond 796
 Function 18, subfunction 11 - get information on the disk subsystem.
114 mikedld 797
======================================================================
798
Parameters:
118 diamond 799
  * eax = 18 - function number
800
  * ebx = 11 - subfunction number
114 mikedld 801
  * ecx = type of the table:
802
    * 1 = short version, 10 bytes
803
    * 2 = full version, 65536 bytes
118 diamond 804
  * edx = pointer to the buffer (in the application) for the table
114 mikedld 805
Returned value:
806
  * function does not return value
118 diamond 807
Format of the table: short version:
808
  * +0: byte: information about FDD's (drives for floppies),
809
    AAAABBBB, where AAAA gives type of the first drive, BBBB -
810
    of the second regarding to the following list:
114 mikedld 811
    * 0 = there is no drive
812
    * 1 = 360Kb, 5.25''
813
    * 2 = 1.2Mb, 5.25''
814
    * 3 = 720Kb, 3.5''
815
    * 4 = 1.44Mb, 3.5''
118 diamond 816
    * 5 = 2.88Mb, 3.5'' (such drives are not used anymore)
817
    For example, for the standard configuration from one 1.44-drive
818
    here will be 40h, and for the case 1.2Mb on A: and 1.44Mb on B:
819
    the value is 24h.
820
  * +1: byte: information about hard disks and CD-drives, AABBCCDD,
114 mikedld 821
    where AA corresponds to the controller IDE0, ..., DD - IDE3:
822
    * 0 = device is absent
118 diamond 823
    * 1 = hard drive
824
    * 2 = CD-drive
825
    For example, in the case HD on IDE0 and CD on IDE2
826
    this field contains 48h.
827
  * +2: 4 db: number of the retrieved partitions on hard disks
828
    at accordingly IDE0,...,IDE3.
829
    If the hard disk on IDEx is absent, appropriate byte is zero,
830
    otherwise it shows number of the recognized partitions, which
831
    can be not presented (if the drive is not formatted or if
832
    the file system is not supported). Current version of the kernel
277 diamond 833
    supports only FAT16, FAT32 and NTFS for hard disks.
114 mikedld 834
  * +6: 4 db: reserved
118 diamond 835
Format of the table: full version:
836
  * +0: 10 db: same as for the short version
114 mikedld 837
  * +10: 100 db: data for the first partition
838
  * +110: 100 db: data for the second partition
839
  * ...
840
  * +10+100*(n-1): 100 db: data for the last partition
118 diamond 841
The partitions are located as follows: at first sequentially all
842
recoginzed partitions on HD on IDE0 (if present),
843
then on HD on IDE1 (if present) and so on up to IDE3.
844
Format of the information about partition
845
(at moment only FAT is supported):
114 mikedld 846
  * +0: dword: first physical sector of the partition
847
  * +4: dword: last physical sector of the partition
118 diamond 848
    (belongs to the partition)
277 diamond 849
  * +8: byte: file system type:
850
    16=FAT16, 32=FAT32, 1=NTFS
851
  * other data are dependent on file system, are modified with
852
    kernel modifications and therefore are not described
114 mikedld 853
Remarks:
118 diamond 854
  * The short table can be used for obtaining the information about
855
    available devices.
114 mikedld 856
 
857
======================================================================
118 diamond 858
========== Function 18, subfunction 13 - get kernel version. =========
114 mikedld 859
======================================================================
860
Parameters:
118 diamond 861
  * eax = 18 - function number
862
  * ebx = 13 - subfunction number
863
  * ecx = pointer to the buffer (not less than 16 bytes), where
864
    the information will be placed
114 mikedld 865
Returned value:
866
  * function does not return value
867
Structure of the buffer:
868
db a,b,c,d for version a.b.c.d
869
db UID_xxx: one of UID_NONE=0, UID_MENUET=1, UID_KOLIBRI=2
540 victor 870
dd REV - kernel SVN revision number
871
For Kolibri 0.7.0.0 kernel:
872
db 0,7,0,0
114 mikedld 873
db 2
540 victor 874
dd 533
114 mikedld 875
 
118 diamond 876
======================================================================
877
======= Function 18, subfunction 14 - wait for screen retrace. =======
878
======================================================================
879
Waits for the beginning of retrace of the scanning ray of the screen
880
monitor.
114 mikedld 881
Parameters:
118 diamond 882
  * eax = 18 - function number
883
  * ebx = 14 - subfunction number
114 mikedld 884
Returned value:
118 diamond 885
  * eax = 0 as the tag of success
114 mikedld 886
Remarks:
118 diamond 887
  * Function is intended only for active high-efficiency graphics
114 mikedld 888
    applications; is used for smooth output of a graphics.
889
 
118 diamond 890
======================================================================
891
== Function 18, subfunction 15 - center mouse cursor on the screen. ==
892
======================================================================
114 mikedld 893
Parameters:
118 diamond 894
  * eax = 18 - function number
895
  * ebx = 15 - subfunction number
114 mikedld 896
Returned value:
118 diamond 897
  * eax = 0 as the tag of success
114 mikedld 898
 
899
======================================================================
118 diamond 900
========= Function 18, subfunction 16 - get size of free RAM. ========
114 mikedld 901
======================================================================
902
Parameters:
118 diamond 903
  * eax = 18 - function number
904
  * ebx = 16 - subfunction number
114 mikedld 905
Returned value:
906
  * eax = size of free memory in kilobytes
907
 
908
======================================================================
118 diamond 909
======== Function 18, subfunction 17 - get full amount of RAM. =======
114 mikedld 910
======================================================================
911
Parameters:
118 diamond 912
  * eax = 18 - function number
913
  * ebx = 17 - subfunction number
114 mikedld 914
Returned value:
118 diamond 915
  * eax = total size of existing memory in kilobytes
114 mikedld 916
 
917
======================================================================
118 diamond 918
===================== Function 18, subfunction 18 ====================
919
============= Terminate process/thread by the identifier. ============
114 mikedld 920
======================================================================
921
Parameters:
118 diamond 922
  * eax = 18 - function number
923
  * ebx = 18 - subfunction number
924
  * ecx = identifer of process/thread (PID/TID)
114 mikedld 925
Returned value:
118 diamond 926
  * eax = 0 - success
927
  * eax = -1 - error (process is not found or is system)
114 mikedld 928
Remarks:
118 diamond 929
  * It is impossible to terminate system thread OS/IDLE (identifier
930
    1), it is possible to terminate any normal process/thread.
931
  * See also subfunction 2 - terminate
932
    process/thread by given slot.
114 mikedld 933
 
934
======================================================================
131 diamond 935
======== Function 18, subfunction 19 - get/set mouse features. =======
120 mario79 936
======================================================================
131 diamond 937
 
938
---------------- Subsubfunction 0 - get mouse speed. -----------------
120 mario79 939
Parameters:
940
  * eax = 18 - function number
941
  * ebx = 19 - subfunction number
131 diamond 942
  * ecx = 0 - subsubfunction number
943
Returned value:
944
  * eax = current mouse speed
120 mario79 945
 
131 diamond 946
---------------- Subsubfunction 1 - set mouse speed. -----------------
947
Parameters:
948
  * eax = 18 - function number
949
  * ebx = 19 - subfunction number
950
  * ecx = 1 - subsubfunction number
951
  * edx = new value for speed
952
Returned value:
953
  * function does not return value
120 mario79 954
 
131 diamond 955
---------------- Subsubfunction 2 - get mouse delay. -----------------
956
Parameters:
957
  * eax = 18 - function number
958
  * ebx = 19 - subfunction number
959
  * ecx = 2 - subsubfunction number
960
Returned value:
961
  * eax = current mouse delay
120 mario79 962
 
131 diamond 963
---------------- Subsubfunction 3 - set mouse delay. -----------------
964
Parameters:
965
  * eax = 18 - function number
966
  * ebx = 19 - subfunction number
967
  * ecx = 3 - subsubfunction number
968
  * edx = new value for mouse delay
969
Returned value:
970
  * function does not return value
120 mario79 971
 
131 diamond 972
----------- Subsubfunction 4 - set mouse pointer position. -----------
973
Parameters:
974
  * eax = 18 - function number
975
  * ebx = 19 - subfunction number
976
  * ecx = 4 - subsubfunction number
977
  * edx = [coordinate on axis x]*65536 + [coordinate on axis y]
978
Returned value:
979
  * function does not return value
120 mario79 980
Remarks:
131 diamond 981
  * It is recommended to set speed of the mouse (in subsubfunction 1)
982
    from 1 up to 9. The installed value is not inspected by the kernel
983
    code, so set it carefully, at incorrect value the cursor
984
    can "freeze". Speed of the mouse can be regulated through the
985
    application SETUP.
986
  * Recommended delay of the mouse (in subsubfunction 3) = 10. Lower
987
    value is not handled by COM mice. At the very large values the
988
    movement of the mouse on 1 pixel is impossible and the cursor will
989
    jump on the value of installed speed (subsubfunction 1). The
990
    installed value is not inspected by the kernel code.
133 diamond 991
    Mouse delay can be regulated through the application SETUP.
131 diamond 992
  * The subsubfunction 4 does not check the passed value. Before
993
    its call find out current screen resolution (with function 14)
994
    and check that the value of position is inside the limits of the
995
    screen.
120 mario79 996
 
997
======================================================================
193 diamond 998
======== Function 18, subfunction 20 - get information on RAM. =======
999
======================================================================
1000
Parameters:
1001
  * eax = 18 - function number
1002
  * ebx = 20 - subfunction number
1003
  * ecx = pointer to the buffer for information (36 bytes)
1004
Returned value:
1005
  * eax = total size of existing RAM in pages
1006
    or -1 if error has occured
1007
  * buffer pointed to by ecx contains the following information:
1008
    * +0:  dword: total size of existing RAM in pages
1009
    * +4:  dword: size of free RAM in pages
1010
    * +8:  dword: number of page faults (exceptions #PF)
1011
                 in applications
1012
    * +12: dword: size of kernel heap in bytes
1013
    * +16: dword: free in kernel heap in bytes
1014
    * +20: dword: total number of memory blocks in kernel heap
1015
    * +24: dword: number of free memory blocks in kernel heap
1016
    * +28: dword: size of maximum free block in kernel heap
1017
                 (reserved)
1018
    * +32: dword: size of maximum allocated block in kernel heap
1019
                 (reserved)
1020
 
1021
======================================================================
608 alver 1022
====================== Function 18, subfunction 21 =====================
1023
=== Get number of the slot of process/thread at his identificator ====
1024
======================================================================
1025
Parameters:
1026
  * eax = 18 - function number
1027
  * ebx = 21 - subfunction number
1028
  * ecx = PID/TID (process/thread identificator)
1029
Returned value:
1030
  * eax = number of the slot of process/thread, if it really present
1031
    or 0, if PID/TID is false
1032
 
1033
======================================================================
1034
==================== Function 18, subfunction 22 =====================
1035
============= Minimize/restore window of process/thread ==============
1036
======================================================================
1037
Parameters:
1038
  * eax = 18 - function number
1039
  * ebx = 22 - subfunction number
1040
  * ecx = Operation type
1041
 
1042
           1 - minimize window at PID/TID identificator
1043
           2 - restore minimized window at slot number of thread
1044
           3 - restore minimized window at PID/TID identificator
1045
  * edx = Operation argument (Number of slot or a PID/TID)
1046
Returned value:
1047
  * eax = 0 - successfully ending
1048
    eax = -1 - error
1049
 
1050
======================================================================
118 diamond 1051
==================== Function 20 - MIDI interface. ===================
114 mikedld 1052
======================================================================
1053
 
118 diamond 1054
----------------------- Subfunction 1 - reset ------------------------
114 mikedld 1055
Parameters:
118 diamond 1056
  * eax = 20 - function number
1057
  * ebx = 1 - subfunction number
114 mikedld 1058
 
1059
-------------------- Subfunction 2 - output byte ---------------------
1060
Parameters:
118 diamond 1061
  * eax = 20 - function number
1062
  * ebx = 2 - subfunction number
114 mikedld 1063
  * cl = byte for output
118 diamond 1064
Returned value (is the same for both subfunctions):
1065
  * eax = 0 - success
114 mikedld 1066
  * eax = 1 - base port is not defined
1067
Remarks:
118 diamond 1068
  * Previously the base port must be defined by
1069
    subfunction 1 of function 21.
114 mikedld 1070
 
1071
======================================================================
118 diamond 1072
======== Function 21, subfunction 1 - set MPU MIDI base port. ========
114 mikedld 1073
======================================================================
1074
Parameters:
118 diamond 1075
  * eax = 21 - function number
1076
  * ebx = 1 - subfunction number
1077
  * ecx = number of base port
1078
Returned value
1079
  * eax = 0 - success
114 mikedld 1080
  * eax = -1 - erratic number of a port
1081
Remarks:
118 diamond 1082
  * Number of a port must satisfy to conditions 0x100<=ecx<=0xFFFF.
1083
  * The installation of base is necessary for function 20.
1084
  * To get base port use subfunction 1 of function 26.
114 mikedld 1085
 
1086
======================================================================
118 diamond 1087
========== Function 21, subfunction 2 - set keyboard layout. =========
114 mikedld 1088
======================================================================
118 diamond 1089
Keyboard layout is used to convert keyboard scancodes to ASCII-codes,
1090
which will be read by function 2.
114 mikedld 1091
Parameters:
118 diamond 1092
  * eax = 21 - function number
1093
  * ebx = 2 - subfunction number
1094
  * ecx = which layout to set:
114 mikedld 1095
    * 1 = normal layout
1096
    * 2 = layout at pressed Shift
1097
    * 3 = layout at pressed Alt
118 diamond 1098
  * edx = pointer to layout - table of length 128 bytes
114 mikedld 1099
Or:
1100
  * ecx = 9
118 diamond 1101
  * dx = country identifier (1=eng, 2=fi, 3=ger, 4=rus)
114 mikedld 1102
Returned value:
118 diamond 1103
  * eax = 0 - success
1104
  * eax = 1 - incorrect parameter
114 mikedld 1105
Remarks:
118 diamond 1106
  * If Alt is pressed, the layout with Alt is used;
1107
    if Alt is not pressed, but Shift is pressed,
1108
    the layout with Shift is used;
1109
    if Alt and Shift are not pressed, but Ctrl is pressed, the normal
1110
    layout is used and then from the code is subtracted 0x60;
1111
    if no control key is pressed, the normal layout is used.
1112
  * To get layout and country identifier use
1113
    subfunction 2 of function 26.
1114
  * Country identifier is global system variable, which is not used
1115
    by the kernel itself; however the application '@panel' displays
1116
    the corresponding icon.
1117
  * The application @panel switches layouts on user request.
114 mikedld 1118
 
1119
======================================================================
118 diamond 1120
============== Function 21, subfunction 3 - set CD base. =============
114 mikedld 1121
======================================================================
1122
Parameters:
118 diamond 1123
  * eax = 21 - function number
1124
  * ebx = 3 - subfunction number
1125
  * ecx = CD base: 1=IDE0, 2=IDE1, 3=IDE2, 4=IDE3
114 mikedld 1126
Returned value:
1127
  * eax = 0
1128
Remarks:
118 diamond 1129
  * CD base is used by function 24.
1130
  * To get CD base use subfunction 3 of function 26.
114 mikedld 1131
 
1132
======================================================================
118 diamond 1133
====== Function 21, subfunction 4 - set Sound Blaster base port. =====
114 mikedld 1134
======================================================================
1135
Parameters:
118 diamond 1136
  * eax = 21 - function number
1137
  * ebx = 4 - subfunction number
1138
  * ecx = number of the base port
114 mikedld 1139
Returned value:
118 diamond 1140
  * eax = 0 - success
1141
  * eax = -1 - erratic port number
114 mikedld 1142
Remarks:
118 diamond 1143
  * Number of the port must satisfy to conditions 0x100<=ecx<=0xFFFF.
1144
  * The installation of the base is necessary for
1145
    functions 25, 28, 55.
1146
  * To get base port use subfunction 4 of function 26.
114 mikedld 1147
 
1148
======================================================================
118 diamond 1149
========== Function 21, subfunction 5 - set system language. =========
114 mikedld 1150
======================================================================
1151
Parameters:
118 diamond 1152
  * eax = 21 - function number
1153
  * ebx = 5 - subfunction number
1154
  * ecx = system language (1=eng, 2=fi, 3=ger, 4=rus)
114 mikedld 1155
Returned value:
1156
  * eax = 0
1157
Remarks:
118 diamond 1158
  * System language is global system variable and is not used
1159
    by the kernel itself, however application @panel draws the
1160
    appropriate icon.
1161
  * Function does not check for correctness, as the kernel does not
1162
    use this variable.
1163
  * To get system language use subfunction 5 of function 26.
114 mikedld 1164
 
1165
======================================================================
118 diamond 1166
============== Function 21, subfunction 7 - set HD base. =============
114 mikedld 1167
======================================================================
118 diamond 1168
The HD base defines hard disk to write with usage of obsolete
346 diamond 1169
syntax /HD in obsolete function 58; at usage of modern syntax
1170
/HD0,/HD1,/HD2,/HD3 base is set automatically.
114 mikedld 1171
Parameters:
118 diamond 1172
  * eax = 21 - function number
1173
  * ebx = 7 - subfunction number
1174
  * ecx = HD base: 1=IDE0, 2=IDE1, 3=IDE2, 4=IDE3
114 mikedld 1175
Returned value:
1176
  * eax = 0
1177
Remarks:
118 diamond 1178
  * Any application at any time can change the base.
1179
  * Do not change base, when any application works with hard disk.
1180
    If you do not want system bugs.
1181
  * To get HD base use subfunction 7 of function 26.
1182
  * It is also necessary to define used partition of hard disk by
1183
    subfunction 8.
114 mikedld 1184
 
1185
======================================================================
118 diamond 1186
========= Function 21, subfunction 8 - set used HD partition. ========
114 mikedld 1187
======================================================================
118 diamond 1188
The HD partition defines partition of the hard disk to write with
346 diamond 1189
usage of obsolete syntax /HD and obsolete function 58;
118 diamond 1190
at usage of functions 58 and 70 and modern syntax /HD0,/HD1,/HD2,/HD3
346 diamond 1191
base and partition are set automatically.
114 mikedld 1192
Parameters:
118 diamond 1193
  * eax = 21 - function number
1194
  * ebx = 8 - subfunction number
1195
  * ecx = HD partition (beginning from 1)
1196
Return value:
114 mikedld 1197
  * eax = 0
1198
Remarks:
118 diamond 1199
  * Any application at any time can change partition.
1200
  * Do not change partition when any application works with hard disk.
1201
    If you do not want system bugs.
1202
  * To get used partition use subfunction 8 of function 26.
1203
  * There is no correctness checks.
1204
  * To get the number of partitions of a hard disk use
1205
    subfunction 11 of function 18.
1206
  * It is also necessary to define used HD base by subfunction 7.
114 mikedld 1207
 
1208
======================================================================
118 diamond 1209
======== Function 21, subfunction 10 - set sound DMA channel. ========
114 mikedld 1210
======================================================================
1211
Parameters:
118 diamond 1212
  * eax = 21 - function number
1213
  * ebx = 10 - subfunction number
114 mikedld 1214
  * ecx = number of channel (from 0 up to 3 inclusively)
1215
Returned value:
118 diamond 1216
  * eax = 0 - success
1217
  * eax = -1 - incorrect channel number
114 mikedld 1218
Remarks:
118 diamond 1219
  * Number of DMA channel is used in subfunction 1 of function 55.
1220
  * To get sound DMA channel use subfunction 10 of function 26.
114 mikedld 1221
 
1222
======================================================================
118 diamond 1223
 Function 21, subfunction 11 - enable/disable low-level access to HD.
114 mikedld 1224
======================================================================
1225
Parameters:
118 diamond 1226
  * eax = 21 - function number
1227
  * ebx = 11 - subfunction number
1228
  * ecx = 0/1 - disable/enable
114 mikedld 1229
Returned value:
1230
  * eax = 0
1231
Remarks:
118 diamond 1232
  * Is used in LBA-read (subfunction 8 of function 58).
1233
  * The current implementation uses only low bit of ecx.
1234
  * To get current status use subfunction 11 of function 26.
114 mikedld 1235
 
1236
======================================================================
118 diamond 1237
 Function 21, subfunction 12 - enable/disable low-level access to PCI.
114 mikedld 1238
======================================================================
1239
Parameters:
118 diamond 1240
  * eax = 21 - function number
1241
  * ebx = 12 - subfunction number
1242
  * ecx = 0/1 - disable/enable
114 mikedld 1243
Returned value:
1244
  * eax = 0
1245
Remarks:
118 diamond 1246
  * Is used in operations with PCI bus (function 62).
1247
  * The current implementation uses only low bit of ecx.
1248
  * To get current status use subfunction 12 of function 26.
114 mikedld 1249
 
1250
======================================================================
118 diamond 1251
============ Function 21, subfunction 13, subsubfunction 1 ===========
1252
======== Initialize + get information on the driver vmode.mdr. =======
114 mikedld 1253
======================================================================
1254
Parameters:
118 diamond 1255
  * eax = 21 - function number
1256
  * ebx = 13 - subfunction number
1257
  * ecx = 1 - number of the driver function
1258
  * edx = pointer to 512-bytes buffer
114 mikedld 1259
Returned value:
118 diamond 1260
  * if driver is not loaded
1261
    (never happens in the current implementation):
114 mikedld 1262
    * eax = -1
118 diamond 1263
    * ebx, ecx destroyed
1264
  * if driver is loaded:
1265
    * eax = 'MDAZ' (in fasm style, that is 'M' - low byte, 'Z' - high)
1266
      - signature
1267
    * ebx = current frequency of the scanning (in Hz)
1268
    * ecx destroyed
1269
    * buffer pointed to by edx is filled
114 mikedld 1270
Format of the buffer:
118 diamond 1271
  * +0: 32*byte: driver name, "Trans VideoDriver"
1272
    (without quotes, supplemented by spaces)
1273
  * +32 = +0x20: dword: driver version (version x.y is encoded as
1274
    y*65536+x), for the current implementation is 1 (1.0)
1275
  * +36 = +0x24: 7*dword: reserved (0 in the current implementation)
1276
  * +64 = +0x40: 32*word: list of supported videomodes (each word
1277
    is number of a videomode, after list itself there are zeroes)
1278
  * +128 = +0x80: 32*(5*word): list of supported frequences of the
1279
    scannings for videomodes: for each videomode listed in the
1280
    previous field up to 5 supported frequences are given
1281
    (unused positions contain zeroes)
114 mikedld 1282
Remarks:
118 diamond 1283
  * Function initializes the driver (if it is not initialized yet)
1284
    and must be called first, before others (otherwise they will do
1285
    nothing and return -1).
1286
  * The current implementation supports only one frequency
1287
    of the scanning on videomode.
114 mikedld 1288
 
1289
======================================================================
118 diamond 1290
============ Function 21, subfunction 13, subsubfunction 2 ===========
1291
================ Get information on current videomode. ===============
114 mikedld 1292
======================================================================
1293
Parameters:
118 diamond 1294
  * eax = 21 - function number
1295
  * ebx = 13 - subfunction number
1296
  * ecx = 2 - number of the driver function
114 mikedld 1297
Returned value:
118 diamond 1298
  * eax = -1 - driver is not loaded or not initialized;
1299
    ebx,ecx are destroyed
114 mikedld 1300
  * eax = [width]*65536 + [height]
118 diamond 1301
  * ebx = frequency of the vertical scanning (in Hz)
114 mikedld 1302
  * ecx = number of current videomode
1303
Remarks:
118 diamond 1304
  * Driver must be initialized by call to
1305
    driver function 1.
1306
  * If only screen sizes are required, it is more expedient to use
1307
    function 14 taking into account that it
1308
    returns sizes on 1 less.
114 mikedld 1309
 
1310
======================================================================
118 diamond 1311
=== Function 21, subfunction 13, subsubfunction 3 - set videomode. ===
114 mikedld 1312
======================================================================
1313
Parameters:
118 diamond 1314
  * eax = 21 - function number
1315
  * ebx = 13 - subfunction number
1316
  * ecx = 3 - number of the driver function
1317
  * edx = [scanning frequency]*65536 + [videomode number]
114 mikedld 1318
Returned value:
118 diamond 1319
  * eax = -1 - driver is not loaded, not initialized or
1320
    an error has occured
1321
  * eax = 0 - success
1322
  * ebx, ecx destroyed
114 mikedld 1323
Remarks:
118 diamond 1324
  * Driver must be initialized by driver function 1.
1325
  * The videomode number and frequency must be in the table
1326
    returned by driver function 1.
114 mikedld 1327
 
1328
======================================================================
118 diamond 1329
============ Function 21, subfunction 13, subsubfunction 4 ===========
1330
================== Return to the initial videomode. ==================
114 mikedld 1331
======================================================================
118 diamond 1332
Returns the screen to the videomode set at system boot.
114 mikedld 1333
Parameters:
118 diamond 1334
  * eax = 21 - function number
1335
  * ebx = 13 - subfunction number
1336
  * ecx = 4 - number of the driver function
114 mikedld 1337
Returned value:
118 diamond 1338
  * eax = -1 - driver is not loaded or not initialized
1339
  * eax = 0 - success
1340
  * ebx, ecx destroyed
114 mikedld 1341
Remarks:
118 diamond 1342
  * Driver must be initialized by call to driver function 1.
114 mikedld 1343
 
118 diamond 1344
======================================================================
1345
============ Function 21, subfunction 13, subsubfunction 5 ===========
1346
===== Increase/decrease the size of the visible area of monitor. =====
1347
======================================================================
114 mikedld 1348
Parameters:
118 diamond 1349
  * eax = 21 - function number
1350
  * ebx = 13 - subfunction number
1351
  * ecx = 5 - number of the driver function
1352
  * edx = 0/1 - decrease/increase horizontal size on 1 position
1353
  * edx = 2/3 - is not supported in the current implementation;
1354
    is planned as decrease/increase vertical size on 1 position
114 mikedld 1355
Returned value:
118 diamond 1356
  * eax = -1 - driver is not loaded or not initialized
1357
  * eax = 0 - success
1358
  * ebx, ecx destroyed
114 mikedld 1359
Remarks:
118 diamond 1360
  * Driver must be initialized by call to driver function 1.
1361
  * Function influences only the physical size of the screen image;
1362
    the logical size (number of pixels) does not change.
114 mikedld 1363
 
1364
======================================================================
118 diamond 1365
================= Function 22 - set system date/time. ================
114 mikedld 1366
======================================================================
1367
Parameters:
118 diamond 1368
  * eax = 22 - function number
1369
  * ebx = 0 - set time
1370
    * ecx = 0x00SSMMHH - time in the binary-decimal code (BCD):
114 mikedld 1371
    * HH=hour 00..23
1372
    * MM=minute 00..59
1373
    * SS=second 00..59
118 diamond 1374
  * ebx = 1 - set date
1375
    * ecx = 0x00DDMMYY - date in the binary-decimal code (BCD):
114 mikedld 1376
    * DD=day 01..31
1377
    * MM=month 01..12
1378
    * YY=year 00..99
118 diamond 1379
  * ebx = 2 - set day of week
114 mikedld 1380
    * ecx = 1 for Sunday, ..., 7 for Saturday
118 diamond 1381
  * ebx = 3 - set alarm clock
114 mikedld 1382
    * ecx = 0x00SSMMHH
1383
Returned value:
118 diamond 1384
  * eax = 0 - success
1385
  * eax = 1 - incorrect parameter
114 mikedld 1386
  * eax = 2 - CMOS-battery was unloaded
1387
Remarks:
118 diamond 1388
  * Value of installation of day of week seems to be doubtful,
1389
    as it a little where is used
1390
    (day of week can be calculated by date).
1391
  * Alarm clock can be set on operation in the given time every day.
1392
    But there is no existing system function to disable it.
1393
  * Operation of alarm clock consists in generation IRQ8.
1394
  * Generally CMOS supports for alarm clock set of value 0xFF
1395
    as one of parameters and it means that the appropriate parameter
1396
    is ignored. But current implementation does not allow this
1397
    (will return 1).
1398
  * Alarm clock is a global system resource; the set of
1399
    an alarm clock cancels automatically the previous set.
1400
    However, at moment no program uses it.
114 mikedld 1401
 
1402
======================================================================
118 diamond 1403
============= Function 23 - wait for event with timeout. =============
114 mikedld 1404
======================================================================
118 diamond 1405
If the message queue is empty, waits for new message in the queue,
1406
but no more than given time. Then reads out a message from the queue.
114 mikedld 1407
 
1408
Parameters:
118 diamond 1409
  * eax = 23 - function number
114 mikedld 1410
  * ebx = timeout (in 1/100 of second)
1411
Returned value:
118 diamond 1412
  * eax = 0 - the message queue is empty
1413
  * otherwise eax = event (see the list of events)
114 mikedld 1414
Remarks:
118 diamond 1415
  * Only those events are taken into account, which enter into
1416
    the mask set by function 40. By default it is
1417
    redraw, key and button events.
1418
  * To check for presence of a message in the queue use function 11.
1419
    To wait without timeout use function 10.
1420
  * Transmission ebx=0 results in immediate returning eax=0.
1421
  * Current implementation returns immediately with eax=0,
1422
    if the addition of ebx with the current value of time counter
1423
    makes 32-bit overflow.
114 mikedld 1424
 
1425
======================================================================
118 diamond 1426
======== Function 24, subfunction 1 - begin to play CD-audio. ========
114 mikedld 1427
======================================================================
1428
Parameters:
118 diamond 1429
  * eax = 24 - function number
1430
  * ebx = 1 - subfunction number
114 mikedld 1431
  * ecx = 0x00FRSSMM, where
118 diamond 1432
    * MM = starting minute
1433
    * SS = starting second
1434
    * FR = starting frame
114 mikedld 1435
Returned value:
118 diamond 1436
  * eax = 0 - success
1437
  * eax = 1 - CD base is not defined
114 mikedld 1438
Remarks:
118 diamond 1439
  * Previously CD base must be defined by the call to
1440
    subfunction 3 of function 21.
1441
  * One second includes 75 frames, one minute includes 60 seconds.
1442
  * The function is asynchronous (returns control, when play begins).
114 mikedld 1443
 
1444
======================================================================
118 diamond 1445
======= Function 24, subfunction 2 - get information on tracks. ======
114 mikedld 1446
======================================================================
1447
Parameters:
118 diamond 1448
  * eax = 24 - function number
1449
  * ebx = 2 - subfunction number
1450
  * ecx = pointer to the buffer for the table
1451
    (maximum 8*64h+4 bytes=100 tracks)
114 mikedld 1452
Returned value:
118 diamond 1453
  * eax = 0 - success
1454
  * eax = 1 - CD base is not defined
114 mikedld 1455
Remarks:
118 diamond 1456
  * The format of the table with tracks information is the same as
1457
    for ATAPI-CD command 43h (READ TOC), usual table (subcommand 00h).
1458
    Function returns addresses in MSF.
1459
  * Previously CD base port must be set by call to
1460
    subfunction 3 of function 21.
1461
  * Function returns information only about no more than 100
1462
    first tracks. In most cases it is enough.
114 mikedld 1463
 
1464
======================================================================
118 diamond 1465
========== Function 24, subfunction 3 - stop play CD-audio. ==========
114 mikedld 1466
======================================================================
1467
Parameters:
118 diamond 1468
  * eax = 24 - function number
1469
  * ebx = 1 - subfunction number
114 mikedld 1470
Returned value:
118 diamond 1471
  * eax = 0 - success
1472
  * eax = 1 - CD base is not defined
499 diamond 1473
Remarks:
118 diamond 1474
  * Previously CD base port must be defined by call to
1475
    subfunction 3 of function 21.
114 mikedld 1476
 
1477
======================================================================
588 diamond 1478
================ Function 24, subfunction 4 - eject tray of disk drive. ==============
1479
======================================================================
1480
Parameters:
1481
  * eax = 24 - function number
1482
  * ebx = 4 - subfunction number
1483
  * ecx = position of CD/DVD-drive (from 0=Primary Master to 3=Secondary Slave)
1484
Returned value:
1485
  * Nothing comes back.
1486
Remarks:
1487
  * The function is supported only for ATAPI devices (CD and DVD).
1488
  * At extract of a tray is made deblocking of handle mechanism of a tray.
1489
  * At extract of a tray the code makes clearing the cache of the appropriate device.
1490
  * An example of usage of the function is the application CD_tray.
1491
 
1492
======================================================================
1493
============== Function 24, subfunction 5 - load tray of disk drive. =================
1494
======================================================================
1495
Parameters:
1496
  * eax = 24 - function number
1497
  * ebx = 5 - subfunction number
1498
  * ecx = position of CD/DVD-drive (from 0=Primary Master to 3=Secondary Slave)
1499
Returned value:
1500
  * Nothing comes back.
1501
Remarks:
1502
  * The function is supported only for ATAPI devices (CD and DVD).
1503
  * An example of usage of the function is the application CD_tray.
1504
 
1505
======================================================================
118 diamond 1506
=================== Function 25 - set SBPro volume. ==================
114 mikedld 1507
======================================================================
1508
Parameters:
118 diamond 1509
  * eax = 25 - function number
1510
  * ebx = what to set:
1511
    * 1 - set common volume
1512
    * 2 - set CD-audio volume
1513
  * cl = volume level: high 4 bits for the left column,
1514
    low 4 bits for the right one
114 mikedld 1515
Returned value:
118 diamond 1516
  * eax = 0 - success
1517
  * eax = 1 - SB base is not defined
114 mikedld 1518
  * eax = 2 - incorrect subfunction
1519
Remarks:
118 diamond 1520
  * Previously SB base port must be defined by
1521
    subfunction 4 of function 21.
1522
  * See also function 28 which sets
1523
    volume for the later standard SB16.
114 mikedld 1524
 
1525
======================================================================
118 diamond 1526
======== Function 26, subfunction 1 - get MPU MIDI base port. ========
114 mikedld 1527
======================================================================
1528
Parameters:
118 diamond 1529
  * eax = 26 - function number
1530
  * ebx = 1 - subfunction number
114 mikedld 1531
Returned value:
118 diamond 1532
  * eax = port number
1533
Parameters:
1534
  * To set base port use subfunction 1 of function 21.
114 mikedld 1535
 
1536
======================================================================
1537
========== Function 26, subfunction 2 - get keyboard layout. =========
1538
======================================================================
118 diamond 1539
The keyboard layout is used to convert keyboard scancodes to
1540
ASCII-codes for function 2.
114 mikedld 1541
Parameters:
118 diamond 1542
  * eax = 26 - function number
1543
  * ebx = 2 - subfunction number
114 mikedld 1544
  * ecx = what layout to get:
1545
    * 1 = normal layout
118 diamond 1546
    * 2 = layout with pressed Shift
1547
    * 3 = layout with pressed Alt
1548
  * edx = pointer to the 128-bytes buffer, where the layout will be
1549
    copied
114 mikedld 1550
Returned value:
1551
  * function does not return value
118 diamond 1552
Or:
1553
  * eax = 26 - function number
1554
  * ebx = 2 - subfunction number
114 mikedld 1555
  * ecx = 9
1556
Returned value:
118 diamond 1557
  * eax = country identifier (1=eng, 2=fi, 3=ger, 4=rus)
114 mikedld 1558
Remarks:
118 diamond 1559
  * If Alt is pressed, the layout with Alt is used;
1560
    if Alt is not pressed, but Shift is pressed,
1561
    the layout with Shift is used;
1562
    if Alt and Shift are not pressed, but Ctrl is pressed, the normal
1563
    layout is used and then from the code is subtracted 0x60;
1564
    if no control key is pressed, the normal layout is used.
1565
  * To set layout and country identifier use
1566
    subfunction 2 of function 21.
1567
  * Country identifier is global system variable, which is not used
1568
    by the kernel itself; however the application '@panel' displays
1569
    the corresponding icon (using this function).
1570
  * The application @panel switches layouts on user request.
114 mikedld 1571
 
1572
======================================================================
118 diamond 1573
============== Function 26, subfunction 3 - get CD base. =============
114 mikedld 1574
======================================================================
1575
Parameters:
118 diamond 1576
  * eax = 26 - function number
1577
  * ebx = 3 - subfunction number
114 mikedld 1578
Returned value:
118 diamond 1579
  * eax = CD base: 1=IDE0, 2=IDE1, 3=IDE2, 4=IDE3
114 mikedld 1580
Remarks:
118 diamond 1581
  * CD base is used by function 24.
1582
  * To set CD base use subfunction 3 of function 21.
114 mikedld 1583
 
1584
======================================================================
118 diamond 1585
====== Function 26, subfunction 4 - get Sound Blaster base port. =====
114 mikedld 1586
======================================================================
1587
Parameters:
118 diamond 1588
  * eax = 26 - function number
1589
  * ebx = 4 - subfunction number
114 mikedld 1590
Returned value:
118 diamond 1591
  * eax = base port number
114 mikedld 1592
Remarks:
118 diamond 1593
  * Bae port is used by functions 25, 55.
1594
  * To set base port use subfunction 4 of function 21.
114 mikedld 1595
 
1596
======================================================================
118 diamond 1597
========== Function 26, subfunction 5 - get system language. =========
114 mikedld 1598
======================================================================
1599
Parameters:
118 diamond 1600
  * eax = 26 - function number
1601
  * ebx = 5 - subfunction number
114 mikedld 1602
Returned value:
118 diamond 1603
  * eax = system language (1=eng, 2=fi, 3=ger, 4=rus)
114 mikedld 1604
Remarks:
118 diamond 1605
  * System language is global system variable and is not used
1606
    by the kernel itself, however application @panel draws the
1607
    appropriate icon (using this function).
1608
  * To set system language use subfunction 5 of function 21.
114 mikedld 1609
 
1610
======================================================================
118 diamond 1611
============== Function 26, subfunction 7 - get HD base. =============
114 mikedld 1612
======================================================================
118 diamond 1613
The HD base defines hard disk to write with usage of obsolete
346 diamond 1614
syntax /HD in obsolete function 58; at usage of modern syntax
1615
/HD0,/HD1,/HD2,/HD3 base is set automatically.
114 mikedld 1616
Parameters:
118 diamond 1617
  * eax = 26 - function number
1618
  * ebx = 7 - subfunction number
114 mikedld 1619
Returned value:
118 diamond 1620
  * eax = HD base: 1=IDE0, 2=IDE1, 3=IDE2, 4=IDE3
114 mikedld 1621
Remarks:
118 diamond 1622
  * Any application in any time can change HD base.
1623
  * To set base use subfunction 7 of function 21.
1624
  * To get used partition of hard disk use subfunction 8.
114 mikedld 1625
 
1626
======================================================================
118 diamond 1627
========= Function 26, subfunction 8 - get used HD partition. ========
114 mikedld 1628
======================================================================
118 diamond 1629
The HD partition defines partition of the hard disk to write with
346 diamond 1630
usage of obsolete syntax /HD in obsolete function 58;
118 diamond 1631
at usage of functions 58 and 70 and modern syntax /HD0,/HD1,/HD2,/HD3
346 diamond 1632
base and partition are set automatically.
114 mikedld 1633
Parameters:
118 diamond 1634
  * eax = 26 - function number
1635
  * ebx = 8 - subfunction number
114 mikedld 1636
Returned value:
118 diamond 1637
  * eax = HD partition (beginning from 1)
114 mikedld 1638
Remarks:
118 diamond 1639
  * Any application in any time can change partition.
1640
  * To set partition use subfunction 8 of function 21.
1641
  * To get number of partitions on a hard disk use
1642
    subfunction 11 of function 18.
1643
  * To get base of used hard disk, use subfunction 7.
114 mikedld 1644
 
1645
======================================================================
118 diamond 1646
=== Function 26, subfunction 9 - get the value of the time counter. ==
114 mikedld 1647
======================================================================
1648
Parameters:
118 diamond 1649
  * eax = 26 - function number
1650
  * ebx = 9 - subfunction number
114 mikedld 1651
Returned value:
118 diamond 1652
  * eax = number of 1/100s of second, past from the system boot time
114 mikedld 1653
Remarks:
118 diamond 1654
  * Counter takes modulo 2^32, that correspond to a little more
1655
    than 497 days.
1656
  * To get system time use function 3.
114 mikedld 1657
 
1658
======================================================================
118 diamond 1659
======== Function 26, subfunction 10 - get sound DMA channel. ========
114 mikedld 1660
======================================================================
1661
Parameters:
118 diamond 1662
  * eax = 26 - function number
1663
  * ebx = 10 - subfunction number
114 mikedld 1664
Returned value:
118 diamond 1665
  * eax = number of the channel (from 0 to 3 inclusive)
114 mikedld 1666
Remarks:
118 diamond 1667
  * Number of the DMA channel is used by subfunction 1 of function 55.
1668
  * To set the sound DMA channel use subfunction 10 of function 21.
114 mikedld 1669
 
1670
======================================================================
118 diamond 1671
===================== Function 26, subfunction 11 ====================
1672
========== Find out whether low-level HD access is enabled. ==========
114 mikedld 1673
======================================================================
1674
Parameters:
118 diamond 1675
  * eax = 26 - function number
1676
  * ebx = 11 - subfunction number
114 mikedld 1677
Returned value:
118 diamond 1678
  * eax = 0/1 - disabled/enabled
114 mikedld 1679
Remarks:
118 diamond 1680
  * Is used in LBA read (subfunction 8 of function 58).
1681
  * To set current state use subfunction 11 of function 21.
114 mikedld 1682
 
1683
======================================================================
118 diamond 1684
===================== Function 26, subfunction 12 ====================
1685
========== Find out whether low-level PCI access is enabled. =========
114 mikedld 1686
======================================================================
1687
Parameters:
118 diamond 1688
  * eax = 26 - function number
1689
  * ebx = 12 - subfunction number
114 mikedld 1690
Returned value:
118 diamond 1691
  * eax = 0/1 - disabled/enabled
114 mikedld 1692
Remarks:
118 diamond 1693
  * Is used by operations with PCI bus (function 62).
1694
  * The current implementation uses only low bit of ecx.
1695
  * To set the current state use subfunction 12 of function 21.
114 mikedld 1696
 
1697
======================================================================
118 diamond 1698
=================== Function 28 - set SB16 volume. ===================
114 mikedld 1699
======================================================================
1700
Parameters:
118 diamond 1701
  * eax = 28 - function number
114 mikedld 1702
  * ebx = what to install:
1703
    * 1 - install common volume
118 diamond 1704
    * 2 - install CD-audio volume
1705
  * cl = volume level (0=off, 0xFF=max)
114 mikedld 1706
Returned value:
118 diamond 1707
  * eax = 0 - success
1708
  * eax = 1 - SB base is not defined
114 mikedld 1709
  * eax = 2 - incorrect subfunction
1710
Remarks:
118 diamond 1711
  * Previously SB base port must be defined by
1712
    subfunction 4 of function 21.
1713
  * This function gives more variants for volume, that function 25.
114 mikedld 1714
 
1715
======================================================================
118 diamond 1716
=================== Function 29 - get system date. ===================
114 mikedld 1717
======================================================================
1718
Parameters:
118 diamond 1719
  * eax = 29 - function number
114 mikedld 1720
Returned value:
1721
  * eax = 0x00DDMMYY, where
118 diamond 1722
    (binary-decimal coding, BCD, is used)
1723
  * YY = two low digits of year (00..99)
1724
  * MM = month (01..12)
1725
  * DD = day (01..31)
114 mikedld 1726
Remarks:
118 diamond 1727
  * To set system date use function 22.
114 mikedld 1728
 
1729
======================================================================
521 diamond 1730
============= Function 30 - work with the current folder. ============
1731
======================================================================
1732
 
1733
--------- Subfunction 1 - set current folder for the thread. ---------
1734
Parameters:
1735
  * eax = 30 - function number
1736
  * ebx = 1 - subfunction number
1737
  * ecx = pointer to ASCIIZ-string with the path to new current folder
1738
Returned value:
1739
  * function does not return value
1740
 
1741
--------- Subfunction 2 - get current folder for the thread. ---------
1742
Parameters:
1743
  * eax = 30 - function number
1744
  * ebx = 2 - subfunction number
1745
  * ecx = pointer to buffer
1746
  * edx = size of buffer
1747
Returned value:
1748
  * eax = size of the current folder's name (including terminating 0)
1749
Remarks:
1750
  * If the buffer is too small to hold all data, only first (edx-1)
1751
    bytes are copied and than terminating 0 is inserted.
1752
 
1753
======================================================================
118 diamond 1754
=============== Function 32 - delete file from ramdisk. ==============
114 mikedld 1755
======================================================================
1756
Parameters:
118 diamond 1757
  * eax = 32 - function number
1758
  * ebx = pointer to the filename
114 mikedld 1759
Returned value:
118 diamond 1760
  * eax = 0 - success; otherwise file system error code
114 mikedld 1761
Remarks:
118 diamond 1762
  * This function is obsolete; function 58 allows to fulfill
1763
    the same operations with the extended possibilities.
1764
  * The current implementation returns only values 0(success) and
1765
    5(file not found).
1766
  * The filename must be either in the format 8+3 characters
1767
    (first 8 characters - name itself, last 3 - extension,
1768
    the short names and extensions are supplemented with spaces),
1769
    or in the format 8.3 characters "FILE.EXT"/"FILE.EX "
1770
    (name no more than 8 characters, dot, extension 3 characters
1771
    supplemented if necessary by spaces).
1772
    The filename must be written with capital letters. The terminating
1773
    character with code 0 is not necessary (not ASCIIZ-string).
1774
  * This function does not support folders on the ramdisk.
114 mikedld 1775
 
1776
======================================================================
118 diamond 1777
================ Function 33 - write file to ramdisk. ================
114 mikedld 1778
======================================================================
1779
Parameters:
118 diamond 1780
  * eax = 33 - function number
1781
  * ebx = pointer to the filename
1782
  * ecx = pointer to data for writing
1783
  * edx = number of bytes for writing
1784
  * should be set esi=0
114 mikedld 1785
Returned value:
118 diamond 1786
  * eax = 0 - success, otherwise file system error code
114 mikedld 1787
Remarks:
118 diamond 1788
  * This function is obsolete; function 70 allows to fulfil
1789
    the same operations with extended possibilities.
1790
  * If esi contains non-zero value and selected file already exists,
1791
    one more file with the same name will be created.
1792
  * Otherwise file will be overwritten.
1793
  * The filename must be either in the format 8+3 characters
1794
    (first 8 characters - name itself, last 3 - extension,
1795
    the short names and extensions are supplemented with spaces),
1796
    or in the format 8.3 characters "FILE.EXT"/"FILE.EX "
1797
    (name no more than 8 characters, dot, extension 3 characters
1798
    supplemented if necessary by spaces).
1799
    The filename must be written with capital letters. The terminating
1800
    character with code 0 is not necessary (not ASCIIZ-string).
1801
  * This function does not support folders on the ramdisk.
114 mikedld 1802
 
1803
======================================================================
118 diamond 1804
======= Function 35 - read the color of a pixel on the screen. =======
114 mikedld 1805
======================================================================
1806
Parameters:
1807
  * eax = 35
1808
  * ebx = y*xsize+x, where
118 diamond 1809
  * (x,y) = coordinates of a pixel (beginning from 0)
1810
  * xsize = horizontal screen size
114 mikedld 1811
Returned value:
118 diamond 1812
  * eax = color 0x00RRGGBB
114 mikedld 1813
Remarks:
118 diamond 1814
  * To get screen sizes use function 14. Pay attention,
1815
    that it subtracts 1 from both sizes.
1816
  * There is also direct access (without any system calls)
1817
    to videomemory through the selector gs. To get parameters of
1818
    the current videomode, use function 61.
114 mikedld 1819
 
1820
======================================================================
277 diamond 1821
=================== Function 37 - work with mouse. ===================
114 mikedld 1822
======================================================================
1823
 
118 diamond 1824
---------- Subfunction 0 - screen coordinates of the mouse -----------
114 mikedld 1825
Parameters:
118 diamond 1826
  * eax = 37 - function number
1827
  * ebx = 0 - subfunction number
114 mikedld 1828
Returned value:
118 diamond 1829
  * eax = x*65536 + y, (x,y)=coordinates of the mouse pointer
1830
    (beginning from 0)
114 mikedld 1831
 
118 diamond 1832
-- Subfunction 1 - coordinates of the mouse relative to the window ---
114 mikedld 1833
Parameters:
118 diamond 1834
  * eax = 37 - function number
1835
  * ebx = 1 - subfunction number
114 mikedld 1836
Returned value:
118 diamond 1837
  * eax = x*65536 + y, (x,y)=coordinates of the mouse pointer
1838
    relative to the application window (beginning from 0)
114 mikedld 1839
Remarks:
118 diamond 1840
  * The value is calculated by formula (x-xwnd)*65536 + (y-ywnd).
1841
    If y>=ywnd, the low word is non-negative and contains
1842
    relative y-coordinate, and the high word - relative x-coordinate
1843
    (with correct sign). Otherwise the low word is negative and still
1844
    contains relative y-coordinate, and to the high word
1845
    1 should be added.
114 mikedld 1846
 
118 diamond 1847
------------ Subfunction 2 - pressed buttons of the mouse ------------
114 mikedld 1848
Parameters:
118 diamond 1849
  * eax = 37 - function number
1850
  * ebx = 2 - subfunction number
114 mikedld 1851
Returned value:
118 diamond 1852
  * eax contains information on the pressed mouse buttons:
1853
  * bit 0 is set = left button is pressed
1854
  * bit 1 is set = right button is pressed
486 kastigar 1855
  * bit 2 is set = middle button is pressed
1856
  * bit 3 is set = 4th button is pressed
1857
  * bit 4 is set = 5th button is pressed
118 diamond 1858
  * other bits are cleared
114 mikedld 1859
 
277 diamond 1860
-------------------- Subfunction 4 - load cursor ---------------------
1861
Parameters:
1862
  * eax = 37 - function number
1863
  * ebx = 4 - subfunction number
1864
  * dx = data source:
1865
  * dx = LOAD_FROM_FILE = 0 - data in a file
1866
    * ecx = pointer to full path to the cursor file
1867
    * the file must be in the format .cur, which is standard for
1868
      MS Windows, at that of the size 32*32 pixels
1869
  * dx = LOAD_FROM_MEM = 1 - data of file are already loaded in memory
1870
    * ecx = pointer to data of the cursor file
1871
    * the data format is the same as in the previous case
1872
  * dx = LOAD_INDIRECT = 2 - data in memory
1873
    * ecx = pointer to cursor image in the format ARGB 32*32 pixels
1874
    * edx = 0xXXYY0002, where
1875
      * XX = x-coordinate of cursor hotspot
1876
      * YY = y-coordinate
1877
      * 0 <= XX, YY <= 31
1878
Returned value:
1879
  * eax = 0 - failed
1880
  * otherwise eax = cursor handle
1881
 
1882
--------------------- Subfunction 5 - set cursor ---------------------
1883
Sets new cursor for the window of the current thread.
1884
Parameters:
1885
  * eax = 37 - function number
1886
  * ebx = 5 - subfunction number
1887
  * ecx = cursor handle
1888
Returned value:
1889
  * eax = handle of previous cursor
1890
Remarks:
1891
  * If the handle is incorrect, the function restores the default
1892
    cursor (standard arrow). In particular, ecx=0 restores it.
1893
 
1894
------------------- Subfunction 6 - delete cursor --------------------
1895
Parameters:
1896
  * eax = 37 - function number
1897
  * ebx = 6 - subfunction number
1898
  * ecx = cursor handle
1899
Returned value:
1900
  * eax destroyed
1901
Remarks:
1902
  * The cursor must be loaded previously by the current thread
1903
    (with the call to subfunction 4). The function does not delete
1904
    system cursors and cursors, loaded by another applications.
1905
  * If the active cursor (set by subfunction 5) is deleted,
1906
    the system restores the default cursor (standard arrow).
1907
 
499 diamond 1908
------------------ Subfunction 7 - get scroll data -------------------
486 kastigar 1909
Parameters:
1910
  * eax = 37 - function number
1911
  * ebx = 7 - subfunction number
1912
Returned value:
499 diamond 1913
  * eax = [horizontal offset]*65536 + [vertical offset]
486 kastigar 1914
Remarks:
499 diamond 1915
  * Scroll data is available for active window only.
1916
  * Values are zeroed after reading.
1917
  * Values are signed.
486 kastigar 1918
 
114 mikedld 1919
======================================================================
1920
====================== Function 38 - draw line. ======================
1921
======================================================================
1922
Parameters:
118 diamond 1923
  * eax = 38 - function number
1924
  * ebx = [start coordinate on axis x]*65536 +
1925
              [end coordinate on axis x]
1926
  * ecx = [start coordinate on axis y]*65536 +
1927
              [end coordinate on axis y]
1928
  * edx = 0x00RRGGBB - color
133 diamond 1929
    edx = 0x01xxxxxx - draw inversed line
1930
          (low 24 bits are ignored)
114 mikedld 1931
Returned value:
1932
  * function does not return value
1933
Remarks:
118 diamond 1934
  * Coordinates are relative to the window.
1935
  * End point is also drawn.
114 mikedld 1936
 
1937
======================================================================
118 diamond 1938
== Function 39, subfunction 1 - get a size of the background image. ==
114 mikedld 1939
======================================================================
1940
Parameters:
118 diamond 1941
  * eax = 39 - function number
1942
  * ebx = 1 - subfunction number
114 mikedld 1943
Returned value:
1944
  * eax = [width]*65536 + [height]
1945
Remarks:
118 diamond 1946
  * There is a pair function to set sizes of background image -
1947
    subfunction 1 of function 15. After which it is necessary,
1948
    of course, anew to define image.
114 mikedld 1949
 
1950
======================================================================
118 diamond 1951
== Function 39, subfunction 2 - get pixel from the background image. =
114 mikedld 1952
======================================================================
1953
Parameters:
118 diamond 1954
  * eax = 39 - function number
1955
  * ebx = 2 - subfunction number
114 mikedld 1956
  * ecx = offset
1957
Returned value:
118 diamond 1958
  * eax = 0x00RRGGBB - pixel color, if offset is valid
1959
    (less than 0x160000-16)
1960
  * eax = 2 otherwise
114 mikedld 1961
Remarks:
118 diamond 1962
  * Do not rely on returned value for invalid offsets, it may be
1963
    changed in future kernel versions.
1964
  * Offset for pixel with coordinates (x,y)
1965
    is calculated as (x+y*xsize)*3.
1966
  * There is a pair function to set pixel on the background image -
1967
    subfunction 2 of function 15.
114 mikedld 1968
 
1969
======================================================================
118 diamond 1970
== Function 39, subfunction 4 - get drawing mode for the background. =
114 mikedld 1971
======================================================================
1972
Parameters:
118 diamond 1973
  * eax = 39 - function number
1974
  * ebx = 4 - subfunction number
114 mikedld 1975
Returned value:
118 diamond 1976
  * eax = 1 - tile
1977
  * eax = 2 - stretch
114 mikedld 1978
Remarks:
118 diamond 1979
  * There is a pair function to set drawing mode -
1980
    subfunction 4 of function 15.
114 mikedld 1981
 
1982
======================================================================
118 diamond 1983
=========== Function 40 - set the mask for expected events. ==========
114 mikedld 1984
======================================================================
118 diamond 1985
The mask for expected events affects function working with events
1986
10, 11, 23 - they notify only about events allowed by this mask.
114 mikedld 1987
Parameters:
118 diamond 1988
  * eax = 40 - function number
114 mikedld 1989
  * ebx = mask: bit i corresponds to event i+1 (see list of events)
118 diamond 1990
    (set bit permits notice on event)
114 mikedld 1991
Returned value:
1992
  * function does not return value
1993
Remarks:
118 diamond 1994
  * Default mask (7=111b) enables nofices about redraw,
1995
    keys and buttons. This is enough for many applications.
1996
  * Events prohibited in the mask are saved anyway, when come;
1997
    they are simply not informed with event functions.
1998
  * Event functions take into account the mask on moment of
1999
    function call, not on moment of event arrival.
114 mikedld 2000
 
2001
======================================================================
118 diamond 2002
==================== Function 41 - get IRQ owner. ====================
114 mikedld 2003
======================================================================
2004
Parameters:
118 diamond 2005
  * eax = 41 - function number
2006
  * ebx = IRQ number, 0..15
114 mikedld 2007
Returned value:
118 diamond 2008
  * eax = owner PID
2009
  * eax = 0, if there is no owner
114 mikedld 2010
  * eax = -1 for incorrect ebx
2011
 
2012
======================================================================
118 diamond 2013
==================== Function 42 - read IRQ data. ====================
114 mikedld 2014
======================================================================
118 diamond 2015
When an IRQ occurs, the system reads data from ports indicated
2016
earlier by function 44 and writes this data to
2017
internal buffer. This function reads out data from that buffer
2018
bytewise.
114 mikedld 2019
Parameters:
118 diamond 2020
  * eax = 42 - function number
2021
  * ebx = IRQ number, 0..15
2022
Returned value: (use value of ecx to distinguish)
2023
  * if the thread is not IRQ owner (or IRQ number is incorrect):
114 mikedld 2024
    * ecx = 2
118 diamond 2025
  * if there is no data:
114 mikedld 2026
    * eax = 0
2027
    * ecx = 1
118 diamond 2028
    * ebx destroyed
2029
  * if all is ok:
2030
    * eax = byte size of data, not yet read from buffer
114 mikedld 2031
    * ecx = 0
2032
    * ebx = current byte
2033
Remarks:
118 diamond 2034
  * Previously the thread must reserve indicated IRQ for itself
2035
    by function 45.
2036
  * The size of data buffer is 4000 bytes, on overflow
2037
    "fresh" data cease to be written in the buffer.
114 mikedld 2038
 
2039
======================================================================
118 diamond 2040
================ Function 43 - input/output to a port. ===============
114 mikedld 2041
======================================================================
2042
 
118 diamond 2043
------------------------ Output data to port -------------------------
114 mikedld 2044
Parameters:
118 diamond 2045
  * eax = 43 - function number
114 mikedld 2046
  * bl = byte for output
118 diamond 2047
  * ecx = port number 0xnnnn (from 0 to 0xFFFF)
114 mikedld 2048
Returned value:
118 diamond 2049
  * eax = 0 - success
2050
  * eax = 1 - the thread has not reserved the selected port
114 mikedld 2051
 
118 diamond 2052
------------------------ Input data from port ------------------------
114 mikedld 2053
Parameters:
118 diamond 2054
  * eax = 43 - function number
2055
  * ebx is ignored
2056
  * ecx = 0x8000nnnn, where nnnn = port number (from 0 to 0xFFFF)
114 mikedld 2057
Returned value:
118 diamond 2058
  * eax = 0 - success, thus ebx = entered byte
2059
  * eax = 1 - the thread has not reserved the selected port
114 mikedld 2060
Remarks:
118 diamond 2061
  * Previously the thread must reserve the selected port
2062
    for itself by function 46.
2063
  * Instead of call to this function it is better to use
2064
    processor instructions in/out - this is much
2065
    faster and a bit shorter and easier.
114 mikedld 2066
 
2067
======================================================================
118 diamond 2068
=========== Function 44 - define operations at IRQ arrival. ==========
114 mikedld 2069
======================================================================
118 diamond 2070
At IRQ arrival the system can read the data from ports defined
2071
by this function and write these data to internal buffer, whence
2072
they can be read by функцией 42.
114 mikedld 2073
Parameters:
118 diamond 2074
  * eax = 44 - function number
2075
  * ebx = pointer to the array of structures each describing one port:
2076
    * +0: word: 0 means end of array, otherwise port number
114 mikedld 2077
    * +2: byte: reserved (ignored)
118 diamond 2078
    * +3: byte: 1=read byte from this port, 2=read word
2079
  * ecx = IRQ number, 0..15
114 mikedld 2080
Returned value:
118 diamond 2081
  * eax = 0 - success
2082
  * eax = 1 - the thread is not owner of selected IRQ
114 mikedld 2083
Remarks:
118 diamond 2084
  * Previously the thread must reserve for itself selected IRQ
2085
    by function 45.
114 mikedld 2086
  * First 16 ports are considered only.
118 diamond 2087
  * The current implementation considers incorrect value of field +3
2088
    as a signal to terminate IRQ processing.
114 mikedld 2089
 
2090
======================================================================
118 diamond 2091
=================== Function 45 - reserve/free IRQ. ==================
114 mikedld 2092
======================================================================
2093
Parameters:
118 diamond 2094
  * eax = 45 - function number
114 mikedld 2095
  * ebx = 0 - reserve, 1 = free
118 diamond 2096
  * ecx = IRQ number, 0..15
114 mikedld 2097
Returned value:
118 diamond 2098
  * eax = 0 - success
2099
  * eax = 1 - error (invalid IRQ number
2100
    or attempt to reserve not free IRQ
2101
    or to free IRQ, not reserved by this thread)
114 mikedld 2102
Remarks:
118 diamond 2103
  * IRQ reservation is required for functions 42 and 44.
2104
  * Only one thread can reserve the specific IRQ.
2105
  * IRQs, handled by the system itself, are reserved by the system
2106
    (thread 1) at booting.
2107
  * When a thread terminates, all reserved by it IRQs
2108
    are freed automatically.
114 mikedld 2109
 
2110
======================================================================
118 diamond 2111
====== Function 46 - reserve/free a group of input/output ports. =====
114 mikedld 2112
======================================================================
118 diamond 2113
To work with reserved ports an application can access directly by
2114
commands in/out (recommended way) and can use function 43
2115
(not recommended way).
114 mikedld 2116
Parameters:
118 diamond 2117
  * eax = 46 - function number
114 mikedld 2118
  * ebx = 0 - reserve, 1 - free
118 diamond 2119
  * ecx = start port number
2120
  * edx = end port number (inclusive)
114 mikedld 2121
Returned value:
118 diamond 2122
  * eax = 0 - success
114 mikedld 2123
  * eax = 1 - error
2124
Remarks:
118 diamond 2125
  * For ports reservation: an error occurs if and only if
2126
    one from the following condition satisfies:
2127
    * start port is more than end port;
2128
    * the selected range contains incorrect port number
2129
      (correct are from 0 to 0xFFFF);
2130
    * limit for the total number of reserved areas is exceeded
2131
      (maximum 255 are allowed);
2132
    * the selected range intersects with any of earlier reserved
2133
  * For ports free: an error is an attempt to free range,
2134
    that was not earlier reserved by this function
2135
    (with same ecx,edx).
2136
  * If an error occurs (for both cases) function performs no action.
277 diamond 2137
  * At booting the system reserves for itself ports
2138
    0..0x2d, 0x30..0x4d, 0x50..0xdf, 0xe5..0xff (inclusively).
118 diamond 2139
  * When a thread terminates, all reserved by it ports
2140
    are freed automatically.
114 mikedld 2141
 
2142
======================================================================
118 diamond 2143
============= Function 47 - draw a number in the window. =============
114 mikedld 2144
======================================================================
2145
Parameters:
118 diamond 2146
  * eax = 47 - function number
2147
  * ebx = parameters of conversion number to text:
114 mikedld 2148
    * bl = 0 - ecx contains number
118 diamond 2149
    * bl = 1 - ecx contains pointer to dword-number
2150
    * bh = 0 - display in decimal number system
2151
    * bh = 1 - display in hexadecimal system
2152
    * bh = 2 - display in binary system
499 diamond 2153
    * bits 16-21 = how many digits to display
2154
    * bits 22-31 reserved and must be set to 0
118 diamond 2155
  * ecx = number (if bl=0) or pointer (if bl=1)
114 mikedld 2156
  * edx = [coordinate on axis x]*65536 + [coordinate on axis y]
139 diamond 2157
  * esi = 0xX0RRGGBB:
2158
    * RR, GG, BB specify the color
2159
    * X = ABnn (bits)
2160
    * nn = font (0/1)
2161
    * A is ignored
2162
    * B=1 - fill background with the color edi
114 mikedld 2163
Returned value:
2164
  * function does not return value
2165
Remarks:
118 diamond 2166
  * The given length must not exceed 60.
2167
  * The exactly given amount of digits is output. If number is small
2168
    and can be written by smaller amount of digits, it is supplemented
2169
    by leading zeroes; if the number is big and can not be written by
2170
    given amount of digits, extra digits are not drawn.
2171
  * Parameters of fonts are shown in the description of function 4
2172
    (text output).
114 mikedld 2173
 
2174
======================================================================
118 diamond 2175
========= Function 48, subfunction 0 - apply screen settings. ========
114 mikedld 2176
======================================================================
2177
Parameters:
118 diamond 2178
  * eax = 48 - function number
2179
  * ebx = 0 - subfunction number
114 mikedld 2180
  * ecx = 0 - reserved
2181
Returned value:
2182
  * function does not return value
2183
Remarks:
118 diamond 2184
  * Function redraws the screen after parameters change by
114 mikedld 2185
    subfunctions 1 and 2.
118 diamond 2186
  * Function call without prior call to one of indicated subfunctions
2187
    is ignored.
2188
  * Function call with nonzero ecx is ignored.
114 mikedld 2189
 
2190
======================================================================
118 diamond 2191
=========== Function 48, subfunction 1 - set button style. ===========
114 mikedld 2192
======================================================================
2193
Parameters:
118 diamond 2194
  * eax = 48 - function number
2195
  * ebx = 1 - subfunction number
2196
  * ecx = button style:
2197
    * 0 = flat
2198
    * 1 = 3d
114 mikedld 2199
Returned value:
2200
  * function does not return value
2201
Remarks:
118 diamond 2202
  * After call to this function one should redraw the screen by
2203
    subfunction 0.
2204
  * Button style influences only to their draw of function 8.
114 mikedld 2205
 
118 diamond 2206
======================================================================
2207
====== Function 48, subfunction 2 - set standard window colors. ======
2208
======================================================================
114 mikedld 2209
Parameters:
118 diamond 2210
  * eax = 48 - function number
2211
  * ebx = 2 - subfunction number
2212
  * ecx = pointer to the color table
114 mikedld 2213
  * edx = size of the color table
118 diamond 2214
    (must be 40 bytes for future compatibility)
2215
Format of the color table is shown in description of subfunction 3.
114 mikedld 2216
Returned value:
2217
  * function does not return value
2218
Remarks:
118 diamond 2219
  * After call to this function one should redraw the screen by
2220
    subfunction 0.
2221
  * Table of standard colors influences only to applications,
2222
    which receive this table obviously (by subfunction 3)
2223
    and use it (specifying colors from it to drawing functions).
2224
  * Table of standard colors is included in skin and is installed
2225
    anew with skin installation (by subfunction 8).
2226
  * Color table can be viewed/changed interactively with
2227
    the application 'desktop'.
114 mikedld 2228
 
2229
======================================================================
118 diamond 2230
====== Function 48, subfunction 3 - get standard window colors. ======
114 mikedld 2231
======================================================================
2232
Parameters:
118 diamond 2233
  * eax = 48 - function number
2234
  * ebx = 3 - subfunction number
2235
  * ecx = pointer to the buffer with size edx bytes,
2236
    where table will be written
2237
  * edx = size of color table
2238
    (must be 40 bytes for future compatibility)
114 mikedld 2239
Returned value:
2240
  * function does not return value
118 diamond 2241
Format of the color table:
2242
each item is dword-value for color 0x00RRGGBB
2243
  * +0: dword: frames - color of frame
2244
  * +4: dword: grab - color of header
2245
  * +8: dword: grab_button - color of button on header bar
2246
  * +12 = +0xC: dword: grab_button_text - color of text on button
2247
    on header bar
2248
  * +16 = +0x10: dword: grab_text - color of text on header
2249
  * +20 = +0x14: dword: work - color of working area
2250
  * +24 = +0x18: dword: work_button - color of button in working area
2251
  * +28 = +0x1C: dword: work_button_text - color of text on button
2252
    in working area
2253
  * +32 = +0x20: dword: work_text - color of text in working area
2254
  * +36 = +0x24: dword: work_graph - color of graphics in working area
114 mikedld 2255
Remarks:
118 diamond 2256
  * Structure of the color table is described in the standard
2257
    include file 'macros.inc' as 'system_colors'; for example,
2258
    it is possible to write:
131 diamond 2259
    	sc	system_colors		; variable declaration
2260
    	...				; somewhere one must call
2261
    					; this function with ecx=sc
2262
    	mov	ecx, [sc.work_button_text]	; read text color on
2263
    					; buttin in working area
118 diamond 2264
  * A program itself desides to use or not to use color table.
2265
    For usage program must simply at calls to drawing functions select
2266
    color taken from the table.
2267
  * At change of the table of standard colors (by subfunction 2 with
2268
    the subsequent application of changes by subfunction 0 or
2269
    at skin set by subfunction 8) the system sends to all windows
2270
    redraw message (the event with code 1).
2271
  * Color table can be viewed/changed interactively with
2272
    the application 'desktop'.
114 mikedld 2273
 
2274
======================================================================
118 diamond 2275
============ Function 48, subfunction 4 - get skin height. ===========
114 mikedld 2276
======================================================================
2277
Parameters:
118 diamond 2278
  * eax = 48 - function number
2279
  * ebx = 4 - subfunction number
114 mikedld 2280
Returned value:
118 diamond 2281
  * eax = skin height
114 mikedld 2282
Remarks:
118 diamond 2283
  * Skin height is defined as the height of a header
2284
    of skinned windows.
2285
  * See also general structure of window in the description
2286
    of function 0.
114 mikedld 2287
 
2288
======================================================================
118 diamond 2289
======== Function 48, subfunction 5 - get screen working area. =======
114 mikedld 2290
======================================================================
2291
Parameters:
118 diamond 2292
  * eax = 48 - function number
2293
  * ebx = 5 - subfunction number
114 mikedld 2294
Returned value:
2295
  * eax = [left]*65536 + [right]
2296
  * ebx = [top]*65536 + [bottom]
2297
Remarks:
118 diamond 2298
  * The screen working area defines position and coordinates of
2299
    a maximized window.
2300
  * The screen working area in view of normal work is all screen
2301
    without system panel (the application '@panel').
2302
  * (left,top) are coordinates of the left upper corner,
2303
    (right,bottom) are coordinates of the right lower one.
2304
    Thus the size of working area on x axis can be calculated by
2305
    formula right-left+1, on y axis - by formula bottom-right+1.
2306
  * See also function 14,
2307
    to get sizes of all screen.
2308
  * There is a pair function to set working area - subfunction 6.
114 mikedld 2309
 
2310
======================================================================
118 diamond 2311
======== Function 48, subfunction 6 - set screen working area. =======
114 mikedld 2312
======================================================================
2313
Parameters:
118 diamond 2314
  * eax = 48 - function number
2315
  * ebx = 6 - subfunction number
114 mikedld 2316
  * ecx = [left]*65536 + [right]
2317
  * edx = [top]*65536 + [bottom]
2318
Returned value:
2319
  * function does not return value
2320
Remarks:
118 diamond 2321
  * The screen working area defines position and coordinates of
2322
    a maximized window.
2323
  * This function is used only by the application '@panel',
2324
    which set working area to all screen without system panel.
2325
  * (left,top) are coordinates of the left upper corner,
2326
    (right,bottom) are coordinates of the right lower one.
2327
    Thus the size of working area on x axis can be calculated by
2328
    formula right-left+1, on y axis - by formula bottom-right+1.
2329
  * If 'left'>='right', x-coordinate of working area is not changed.
2330
    If 'left'<0, 'left' will not be set. If 'right' is greater than or
2331
    equal to screen width, 'right' will not be set.
2332
    Similarly on y axis.
2333
  * See also function 14,
2334
    to get sizes of all screen.
2335
  * There is a pair function to get working area - subfunction 5.
2336
  * This function redraws the screen automatically,
2337
    updating coordinates and sizes of maximized windows.
2338
    The system sends to all windows redraw message (the event 1).
114 mikedld 2339
 
2340
======================================================================
118 diamond 2341
=========== Function 48, subfunction 7 - get skin margins. ===========
114 mikedld 2342
======================================================================
118 diamond 2343
Returns the area of a header of a skinned window, intended for
2344
a text of a header.
114 mikedld 2345
Parameters:
118 diamond 2346
  * eax = 48 - function number
2347
  * ebx = 7 - subfunction number
114 mikedld 2348
Returned value:
2349
  * eax = [left]*65536 + [right]
2350
  * ebx = [top]*65536 + [bottom]
2351
Remarks:
118 diamond 2352
  * An application decides itself to use or not to use this function.
2353
  * It is recommended to take into account returned value
2354
    of this function for choice of a place for drawing header text
2355
    (by function 4) or a substitute of header text
2356
    (at the discretion of an application).
114 mikedld 2357
 
2358
======================================================================
118 diamond 2359
============= Function 48, subfunction 8 - set used skin. ============
114 mikedld 2360
======================================================================
2361
Parameters:
118 diamond 2362
  * eax = 48 - function number
2363
  * ebx = 8 - subfunction number
2364
  * ecx = pointer to a block for function 58, in
2365
    which the fields of intermediate buffer and file name are filled
114 mikedld 2366
Returned value:
118 diamond 2367
  * eax = 0 - success
2368
  * otherwise eax = file system error code; if file does not
2369
    contain valid skin, function returns error 3
2370
    (unknown file system).
114 mikedld 2371
Remarks:
118 diamond 2372
  * After successful skin loading the system sends to all windows
2373
    redraw message (the event 1).
2374
  * At booting the system reads skin from file 'default.skn'
2375
    on ramdisk.
2376
  * User can change the skin statically by creating hisself
2377
    'default.skn' or dynamically with the application 'desktop'.
114 mikedld 2378
 
2379
======================================================================
118 diamond 2380
=========== Function 49 - Advanced Power Management (APM). ===========
114 mikedld 2381
======================================================================
2382
Parameters:
118 diamond 2383
  * eax = 49 - function number
2384
  * dx = number of the APM function
2385
    (analogue of ax in APM specification)
2386
  * bx, cx = parameters of the APM function
114 mikedld 2387
Returned value:
118 diamond 2388
  * 16-bit registers ax, bx, cx, dx, si, di and carry flag CF
2389
    are set according to the APM specification
2390
  * high halves of 32-bit registers eax, ebx, ecx,
2391
    edx, esi, edi are destroyed
114 mikedld 2392
Remarks:
118 diamond 2393
  * APM 1.2 specification is described in the document
2394
    "Advanced Power Management (APM) BIOS Specification"
2395
    (Revision 1.2), available at
114 mikedld 2396
    http://www.microsoft.com/whdc/archive/amp_12.mspx;
118 diamond 2397
    besides it is included in famous Interrupt List by Ralf Brown
114 mikedld 2398
    (http://www.pobox.com/~ralf/files.html,
2399
    ftp://ftp.cs.cmu.edu/afs/cs/user/ralf/pub/).
2400
 
2401
======================================================================
118 diamond 2402
=================== Function 50 - set window shape. ==================
114 mikedld 2403
======================================================================
118 diamond 2404
Normal windows have rectangular shape. This function can give to
2405
a window any shape. The shape is given by a set of points inside
2406
the base rectangle belonging to a window. Position and coordinates
2407
of the base rectangle are set by function 0
2408
and changed by function 67.
114 mikedld 2409
 
118 diamond 2410
--------------------------- Set shape data ---------------------------
114 mikedld 2411
Parameters:
118 diamond 2412
  * eax = 50 - function number
2413
  * ebx = 0 - subfunction number
2414
  * ecx = pointer to shape data (array of bytes 0/1)
114 mikedld 2415
Returned value:
2416
  * function does not return value
2417
 
118 diamond 2418
-------------------------- Set shape scale ---------------------------
114 mikedld 2419
Parameters:
118 diamond 2420
  * eax = 50 - function number
2421
  * ebx = 1 - subfunction number
2422
  * ecx sets a scale: each byte of data defines
2423
    (2^scale)*(2^scale) pixels
114 mikedld 2424
Returned value:
2425
  * function does not return value
2426
Remarks:
118 diamond 2427
  * Default scale is 0 (scale factor is 1). If in the shape data
2428
    one byte corresponds to one pixel, there is no necessity
2429
    to set scale.
2430
  * Let's designate xsize = window width (in pixels), ysize = height;
2431
    pay attention, that they are one pixel more than defined by
114 mikedld 2432
    functions 0, 67.
118 diamond 2433
  * On definition of scale xsize and ysize must be divisible
2434
    on 2^scale.
2435
  * Byte of data on offset 'a' must be 0/1 and defines belonging
2436
    to a window of square with the side 2^scale (if scale=0,
2437
    this is one pixel) and coordinates of the left upper corner
114 mikedld 2438
    (a mod (xsize shr scale), a div (xsize shr scale))
118 diamond 2439
  * Data size: (xsize shr scale)*(ysize shr scale).
2440
  * Data must be presented in the memory and not change
2441
    after set of shape.
2442
  * The system views the shape data at every window redraw by
2443
    function 0.
2444
  * The call of subfunction 0 with NULL pointer results in return
2445
    to the rectangular shape.
114 mikedld 2446
 
2447
======================================================================
2448
==================== Function 51 - create thread. ====================
2449
======================================================================
2450
Parameters:
118 diamond 2451
  * eax = 51 - function number
2452
  * ebx = 1 - unique subfunction
2453
  * ecx = address of thread entry point (starting eip)
2454
  * edx = pointer to thread stack (starting esp)
114 mikedld 2455
Returned value:
118 diamond 2456
  * eax = -1 - error (there is too many threads)
2457
  * otherwise eax = TID - thread identifier
2458
    
114 mikedld 2459
 
2460
======================================================================
118 diamond 2461
=== Function 52, subfunction 0 - get network driver configuration. ===
114 mikedld 2462
======================================================================
2463
Parameters:
118 diamond 2464
  * eax = 52 - function number
2465
  * ebx = 0 - subfunction number
114 mikedld 2466
Returned value:
118 diamond 2467
  * eax = configuration dword
114 mikedld 2468
Remarks:
118 diamond 2469
  * Configuration dword can be set by subfunction 2.
2470
  * The kernel does not use this variable. The value of this
2471
    variable and working with it subfunctions 0 and 2 is represented
2472
    doubtful.
114 mikedld 2473
 
2474
======================================================================
118 diamond 2475
========= Function 52, subfunction 1 - get local IP-address. =========
114 mikedld 2476
======================================================================
2477
Parameters:
118 diamond 2478
  * eax = 52 - function number
2479
  * ebx = 1 - subfunction number
114 mikedld 2480
Returned value:
2481
  * eax = IP-address (4 bytes)
2482
Remarks:
118 diamond 2483
  * Local IP-address is set by subfunction 3.
114 mikedld 2484
 
2485
======================================================================
118 diamond 2486
=== Function 52, subfunction 2 - set network driver configuration. ===
114 mikedld 2487
======================================================================
2488
Parameters:
118 diamond 2489
  * eax = 52 - function number
2490
  * ebx = 2 - subfunction number
2491
  * ecx = configuration dword; if low 7 bits derivate the number 3,
2492
    function [re-]initializes Ethernet-card, otherwise
2493
    Ethernet turns off
114 mikedld 2494
Returned value:
118 diamond 2495
  * if Ethernet-interface is not requested, function returns eax=2,
2496
    but this can be changed in future kernel versions
2497
  * if Ethernet-interface is requested, eax=0 means error
2498
    (absence of Ethernet-card), and nonzero value - success
114 mikedld 2499
Remarks:
118 diamond 2500
  * Configuration dword can be read by subfunction 0.
2501
  * The kernel does not use this variable. The value of this
2502
    variable, subfunction 0 and part of subfunction 2, which set it,
114 mikedld 2503
    is represented doubtful.
2504
 
2505
======================================================================
2506
========= Function 52, subfunction 3 - set local IP-address. =========
2507
======================================================================
2508
Parameters:
118 diamond 2509
  * eax = 52 - function number
2510
  * ebx = 3 - subfunction number
114 mikedld 2511
  * ecx = IP-address (4 bytes)
2512
Returned value:
118 diamond 2513
  * the current implementation returns eax=3, but this can be changed
2514
    in future versions
114 mikedld 2515
Remarks:
118 diamond 2516
  * Local IP-address can be get by subfunction 1.
114 mikedld 2517
 
2518
======================================================================
118 diamond 2519
= Function 52, subfunction 6 - add data to the stack of input queue. =
114 mikedld 2520
======================================================================
2521
Parameters:
118 diamond 2522
  * eax = 52 - function number
2523
  * ebx = 6 - subfunction number
2524
  * edx = data size
2525
  * esi = data pointer
114 mikedld 2526
Returned value:
2527
  * eax = -1 - error
118 diamond 2528
  * eax = 0 - success
114 mikedld 2529
Remarks:
118 diamond 2530
  * This function is intended only for slow network drivers
2531
    (PPP, SLIP).
2532
  * Data size must not exceed 1500 bytes, though function
2533
    performs no checks on correctness.
114 mikedld 2534
 
2535
======================================================================
118 diamond 2536
 Function 52, subfunction 8 - read data from the network output queue.
114 mikedld 2537
======================================================================
2538
Parameters:
118 diamond 2539
  * eax = 52 - function number
2540
  * ebx = 8 - subfunction number
2541
  * esi = pointer to 1500-byte buffer
114 mikedld 2542
Returned value:
118 diamond 2543
  * eax = number of read bytes (in the current implementation
2544
    either 0 = no data or 1500)
2545
  * data was copied in buffer
114 mikedld 2546
Remarks:
118 diamond 2547
  * This function is intended only for slow network drivers
2548
    (PPP, SLIP).
114 mikedld 2549
 
2550
======================================================================
118 diamond 2551
============ Function 52, subfunction 9 - get gateway IP. ============
114 mikedld 2552
======================================================================
2553
Parameters:
118 diamond 2554
  * eax = 52 - function number
2555
  * ebx = 9 - subfunction number
114 mikedld 2556
Returned value:
2557
  * eax = gateway IP (4 bytes)
2558
 
2559
======================================================================
118 diamond 2560
=========== Function 52, subfunction 10 - get subnet mask. ===========
114 mikedld 2561
======================================================================
2562
Parameters:
118 diamond 2563
  * eax = 52 - function number
2564
  * ebx = 10 - subfunction number
114 mikedld 2565
Returned value:
118 diamond 2566
  * eax = subnet mask
114 mikedld 2567
 
2568
======================================================================
118 diamond 2569
============ Function 52, subfunction 11 - set gateway IP. ===========
114 mikedld 2570
======================================================================
2571
Parameters:
118 diamond 2572
  * eax = 52 - function number
2573
  * ebx = 11 - subfunction number
114 mikedld 2574
  * ecx = gateway IP (4 bytes)
2575
Returned value:
118 diamond 2576
  * the current implementation returns eax=11, but this can be changed
2577
    in future versions
114 mikedld 2578
 
2579
======================================================================
118 diamond 2580
=========== Function 52, subfunction 12 - set subnet mask. ===========
114 mikedld 2581
======================================================================
2582
Parameters:
118 diamond 2583
  * eax = 52 - function number
2584
  * ebx = 12 - subfunction number
2585
  * ecx = subnet mask
114 mikedld 2586
Returned value:
118 diamond 2587
  * the current implementation returns eax=12, but this can be changed
2588
    in future versions
114 mikedld 2589
 
2590
======================================================================
118 diamond 2591
============== Function 52, subfunction 13 - get DNS IP. =============
114 mikedld 2592
======================================================================
2593
Parameters:
118 diamond 2594
  * eax = 52 - function number
2595
  * ebx = 13 - subfunction number
114 mikedld 2596
Returned value:
2597
  * eax = DNS IP (4 bytes)
2598
 
2599
======================================================================
118 diamond 2600
============== Function 52, subfunction 14 - set DNS IP. =============
114 mikedld 2601
======================================================================
2602
Parameters:
118 diamond 2603
  * eax = 52 - function number
2604
  * ebx = 14 - subfunction number
114 mikedld 2605
  * ecx = DNS IP (4 bytes)
2606
Returned value:
118 diamond 2607
  * the current implementation returns eax=14, but this can be changed
2608
    in future versions
114 mikedld 2609
 
2610
======================================================================
277 diamond 2611
======== Function 52, subfunction 15 - get local MAC address. ========
2612
======================================================================
2613
Parameters:
2614
  * eax = 52 - function number
2615
  * ebx = 15 - subfunction number
2616
  * ecx = 0 - read first 4 bytes,
2617
    ecx = 4 - read last 2 bytes
2618
Returned value:
2619
  * for ecx=0: eax = first 4 bytes of MAC address
2620
  * for ecx=4: ax = last 2 bytes of MAC address,
2621
               high half of eax is destroyed
2622
  * for other ecx: eax = -1 indicates an error
2623
 
2624
======================================================================
118 diamond 2625
============ Function 53, subfunction 0 - open UDP-socket. ===========
114 mikedld 2626
======================================================================
2627
Parameters:
118 diamond 2628
  * eax = 53 - function number
2629
  * ebx = 0 - subfunction number
2630
  * ecx = local port (only low word is taken into account)
2631
  * edx = remote port (only low word is taken into account)
114 mikedld 2632
  * esi = remote IP
2633
Returned value:
118 diamond 2634
  * eax = -1 = 0xFFFFFFFF - error; ebx destroyed
2635
  * eax = socket handle (some number which unambiguously identifies
2636
    socket and have sense only for the system) - success;
2637
    ebx destroyed
114 mikedld 2638
 
2639
======================================================================
118 diamond 2640
=========== Function 53, subfunction 1 - close UDP-socket. ===========
114 mikedld 2641
======================================================================
2642
Parameters:
118 diamond 2643
  * eax = 53 - function number
2644
  * ebx = 1 - subfunction number
2645
  * ecx = socket handle
114 mikedld 2646
Returned value:
118 diamond 2647
  * eax = -1 - incorrect handle
2648
  * eax = 0 - success
2649
  * ebx destroyed
114 mikedld 2650
Remarks:
118 diamond 2651
  * The current implementation does not close automatically all
2652
    sockets of a thread at termination. In particular, one should not
2653
    kill a thread with many opened sockets - there will be an outflow
2654
    of resources.
2655
  * The current implementation does no checks on correctness
2656
    (function returns error only if thread tries to close not opened
2657
    socket with correct handle).
114 mikedld 2658
 
2659
======================================================================
2660
============== Function 53, subfunction 2 - poll socket. =============
2661
======================================================================
2662
Parameters:
118 diamond 2663
  * eax = 53 - function number
2664
  * ebx = 2 - subfunction number
2665
  * ecx = socket handle
114 mikedld 2666
Returned value:
118 diamond 2667
  * eax = number of read bytes
2668
  * ebx destroyed
114 mikedld 2669
Remarks:
118 diamond 2670
  * There is no checks for correctness.
114 mikedld 2671
 
2672
======================================================================
118 diamond 2673
========= Function 53, subfunction 3 - read byte from socket. ========
114 mikedld 2674
======================================================================
2675
Parameters:
118 diamond 2676
  * eax = 53 - function number
2677
  * ebx = 3 - subfunction number
2678
  * ecx = socket handle
114 mikedld 2679
Returned value:
118 diamond 2680
  * if there is no read data: eax=0, bl=0,
2681
    other bytes of ebx are destroyed
2682
  * if there are read data: eax=number of rest bytes
2683
    (possibly 0), bl=read byte, other bytes of ebx are destroyed
114 mikedld 2684
Remarks:
118 diamond 2685
  * There is no checks for correctness.
114 mikedld 2686
 
2687
======================================================================
118 diamond 2688
========== Function 53, subfunction 4 - write to UDP-socket. =========
114 mikedld 2689
======================================================================
2690
Parameters:
118 diamond 2691
  * eax = 53 - function number
2692
  * ebx = 4 - subfunction number
2693
  * ecx = socket handle
2694
  * edx = number of bytes to write
2695
  * esi = pointer to data to write
114 mikedld 2696
Returned value:
118 diamond 2697
  * eax = 0xffffffff - invalid handle
2698
  * eax = 0xffff - not enough memory
2699
  * eax = 0 - success
2700
  * ebx destroyed
114 mikedld 2701
Remarks:
118 diamond 2702
  * Check on validity of handle is minimal - only not very incorrect
2703
    not opened handles are eliminated.
2704
  * Number of bytes to write must not exceed 1500-28, though
2705
    the appropriate check is not made.
114 mikedld 2706
 
2707
======================================================================
2708
============ Function 53, subfunction 5 - open TCP-socket. ===========
2709
======================================================================
2710
Parameters:
118 diamond 2711
  * eax = 53 - function number
2712
  * ebx = 5 - subfunction number
2713
  * ecx = local port (only low word is taken into account)
2714
  * edx = remote port (only low word is taken into account)
114 mikedld 2715
  * esi = remote IP
118 diamond 2716
  * edi = open mode: SOCKET_PASSIVE=0 or SOCKET_ACTIVE=1
114 mikedld 2717
Returned value:
118 diamond 2718
  * eax = -1 = 0xFFFFFFFF - error; ebx destroys
2719
  * eax = socket handle (some number which unambiguously identifies
2720
    socket and have sense only for the system) - success;
2721
    ebx destroyed
114 mikedld 2722
 
2723
======================================================================
118 diamond 2724
========= Function 53, subfunction 6 - get TCP-socket status. ========
114 mikedld 2725
======================================================================
2726
Parameters:
118 diamond 2727
  * eax = 53 - function number
2728
  * ebx = 6 - subfunction number
2729
  * ecx = socket handle
114 mikedld 2730
Returned value:
118 diamond 2731
  * eax = socket status: one of
114 mikedld 2732
  * TCB_LISTEN = 1
2733
  * TCB_SYN_SENT = 2
2734
  * TCB_SYN_RECEIVED = 3
2735
  * TCB_ESTABLISHED = 4
2736
  * TCB_FIN_WAIT_1 = 5
2737
  * TCB_FIN_WAIT_2 = 6
2738
  * TCB_CLOSE_WAIT = 7
2739
  * TCB_CLOSING = 8
2740
  * TCB_LAST_ASK = 9
2741
  * TCB_TIME_WAIT = 10
2742
  * TCB_CLOSED = 11
118 diamond 2743
  * ebx destroys
114 mikedld 2744
Remarks:
118 diamond 2745
  * There is no checks for correctness.
114 mikedld 2746
 
2747
======================================================================
118 diamond 2748
========== Function 53, subfunction 7 - write to TCP-socket. =========
114 mikedld 2749
======================================================================
2750
Parameters:
118 diamond 2751
  * eax = 53 - function number
2752
  * ebx = 7 - subfunction number
2753
  * ecx = socket handle
2754
  * edx = number of bytes to write
2755
  * esi = pointer to data to write
114 mikedld 2756
Returned value:
2757
  * eax = 0xffffffff - error
118 diamond 2758
  * eax = 0xffff - not enough memory
2759
  * eax = 0 - success
2760
  * ebx destroyed
114 mikedld 2761
Remarks:
118 diamond 2762
  * Check on validity of handle is minimal - only not very incorrect
2763
    not opened handles are eliminated.
2764
  * Number of bytes to write must not exceed 1500-40, though
2765
    the appropriate check is not made.
114 mikedld 2766
 
2767
======================================================================
118 diamond 2768
=========== Function 53, subfunction 8 - close TCP-socket. ===========
114 mikedld 2769
======================================================================
2770
Parameters:
118 diamond 2771
  * eax = 53 - function number
2772
  * ebx = 8 - subfunction number
2773
  * ecx = socket handle
114 mikedld 2774
Returned value:
118 diamond 2775
  * eax = -1 - invalid handle
2776
  * eax = 0xffff - not enough memory for socket close packet
2777
  * eax = 0 - success
2778
  * in many cases eax is destroyed (the result of function 'queue'
2779
    is returned) - probably this is bug, which will be corrected
2780
  * ebx destroyed
114 mikedld 2781
Remarks:
118 diamond 2782
  * The current implementation does not close automatically all
2783
    sockets of a thread at termination. In particular, one should not
2784
    kill a thread with many opened sockets - there will be an outflow
2785
    of resources.
2786
  * The current implementation does no checks on correctness
2787
    (function returns error only if thread tries to close not opened
2788
    socket with correct handle).
114 mikedld 2789
 
2790
======================================================================
118 diamond 2791
=== Function 53, subfunction 9 - check whether local port is free. ===
114 mikedld 2792
======================================================================
2793
Parameters:
118 diamond 2794
  * eax = 53 - function number
2795
  * ebx = 9 - subfunction number
2796
  * ecx = local port number (low 16 bits are used only)
114 mikedld 2797
Returned value:
2798
  * eax = 0 - port is used
2799
  * eax = 1 - port is free
118 diamond 2800
  * ebx destroyed
114 mikedld 2801
 
2802
======================================================================
314 diamond 2803
===== Function 53, subfunction 10 - query Ethernet cable status. =====
2804
======================================================================
2805
Parameters:
2806
  * eax = 53 - function number
2807
  * ebx = 10 - subfunction number
2808
Returned value:
2809
  * al = -1 - a network driver is not loaded or
2810
              does not support this function
2811
  * al = 0 - Ethernet cable is unplugged
2812
  * al = 1 - Ethernet cable is plugged
346 diamond 2813
  * ebx destroyed
314 diamond 2814
Remarks:
2815
  * The current kernel implementation supports this function
2816
    only for RTL8139 network cards.
2817
 
2818
======================================================================
346 diamond 2819
======= Function 53, subfunction 11 - read network stack data. =======
340 heavyiron 2820
======================================================================
346 diamond 2821
Paramters:
2822
  * eax = 53 - function number
2823
  * ebx = 11 - subfunction number
2824
  * ecx = socket handle
2825
  * edx = pointer to buffer
2826
  * esi = number of bytes to read;
2827
  * esi = 0 - read all data (maximum 4096 bytes)
2828
Returned value:
2829
  * eax = number of bytes read
2830
  * ebx destroyed
2831
Remakrs:
2832
  * There is no check on handle correctness.
340 heavyiron 2833
 
2834
======================================================================
118 diamond 2835
= Function 53, subfunction 255 - debug information of network driver.
114 mikedld 2836
======================================================================
2837
Parameters:
118 diamond 2838
  * eax = 53 - function number
2839
  * ebx = 255 - subfunction number
114 mikedld 2840
  * ecx = type of requested information (see below)
2841
Returned value:
2842
  * eax = requested information
118 diamond 2843
  * ebx destroyed
2844
Possible values for ecx:
114 mikedld 2845
  * 100: length of queue 0 (empty queue)
2846
  * 101: length of queue 1 (ip-out queue)
2847
  * 102: length of queue 2 (ip-in queue)
2848
  * 103: length of queue 3 (net1out queue)
118 diamond 2849
  * 200: number of items in the ARP table
2850
  * 201: size of the ARP table (in items) (20 for current version)
2851
  * 202: read item at edx of the ARP table to the temporary buffer,
2852
    whence 5 following types take information;
114 mikedld 2853
    in this case eax is not defined
118 diamond 2854
  * 203: IP-address saved by type 202
2855
  * 204: high dword of MAC-address saved by type 202
2856
  * 205: low word of MAC-address saved by type 202
2857
  * 206: status word saved by type 202
2858
  * 207: ttl word saved by type 202
2859
  * 2: total number of received IP-packets
2860
  * 3: total number of transferred IP-packets
2861
  * 4: total number of dumped received packets
2862
  * 5: total number of received ARP-packets
2863
  * 6: status of packet driver, 0=inactive, nonzero=active
114 mikedld 2864
 
2865
======================================================================
2866
========== Function 55, subfunction 0 - load data for SB16. ==========
2867
======================================================================
2868
Parameters:
118 diamond 2869
  * eax = 55 - function number
2870
  * ebx = 0 - subfunction number
2871
  * ecx = pointer to data (is copied 64 kilobytes, is used as much as
2872
    set by subfunction 2)
114 mikedld 2873
Returned value:
2874
  * function does not return value
2875
Remarks:
118 diamond 2876
  * Format and size of data are set by subfunction 2.
114 mikedld 2877
 
2878
======================================================================
118 diamond 2879
======== Function 55, subfunction 1 - begin play data on SB16. =======
114 mikedld 2880
======================================================================
2881
Parameters:
118 diamond 2882
  * eax = 55 - function number
2883
  * ebx = 1 - subfunction number
114 mikedld 2884
Returned value:
2885
  * function does not return value
2886
Remarks:
118 diamond 2887
  * Previously data must be loaded by subfunction 0 and
2888
    their format must be defined by subfunction 2.
2889
  * Function returns control, when playing of data began; after that
2890
    play goes independently from application (and does not use
2891
    processor time at all).
2892
  * Previously must be defined SB16 base port
2893
    (by subfunction 4 of function 21) and DMA channel
2894
    (by subfunction 10 of function 21).
114 mikedld 2895
 
2896
======================================================================
118 diamond 2897
======== Function 55, subfunction 2 - set format of SB16 data. =======
114 mikedld 2898
======================================================================
2899
Parameters:
118 diamond 2900
  * eax = 55 - function number
2901
  * ebx = 2 - subfunction number
2902
  * ecx = 0 - set digit capacity
2903
    * edx = 1 - 8bit mono
2904
    * edx = 2 - 8bit stereo
2905
  * ecx = 1 - set data size
114 mikedld 2906
    * edx = size in bytes
118 diamond 2907
  * ecx = 2 - set play frequency
114 mikedld 2908
    * edx = frequency
2909
Returned value:
2910
  * function does not return value
2911
Remarks:
118 diamond 2912
  * When the system boots, it sets following default parameters:
2913
    digit capacity - 8bit mono, size - 64 Kb, frequency - 44100 Hz.
2914
    Nevertheless it is recommended to set necessary values obviously
2915
    as they could be reset by some application.
114 mikedld 2916
 
2917
======================================================================
118 diamond 2918
 Function 55, subfunction 55 - begin to play data on built-in speaker.
114 mikedld 2919
======================================================================
2920
Parameters:
118 diamond 2921
  * eax = 55 - function number
2922
  * ebx = 55 - subfunction number
2923
  * esi = pointer to data
114 mikedld 2924
Returned value:
118 diamond 2925
  * eax = 0 - success
2926
  * eax = 55 - error (speaker is off or busy)
2927
Data is an array of items with variable length.
2928
Format of each item is defined by first byte:
114 mikedld 2929
  * 0 = end of data
118 diamond 2930
  * 1..0x80 = sets sound duration on 1/100 of second; sound note
2931
    is defined by immediate value of frequency
2932
    * following word (2 bytes) contains frequency divider;
2933
      frequency is defined as 1193180/divider
114 mikedld 2934
  * 0x81 = invalid
118 diamond 2935
  * 0x82..0xFF = note is defined by octave and number:
2936
    * duration in 1/100 of second = (first byte)-0x81
114 mikedld 2937
    * there is one more byte;
118 diamond 2938
    * (second byte)=0xFF - delay
2939
    * otherwise it looks like a*0x10+b, where b=number of the note in
2940
      an octave from 1 to 12, a=number of octave (beginning from 0)
114 mikedld 2941
Remarks:
118 diamond 2942
  * Speaker play can be disabled/enabled by
2943
    subfunction 8 of function 18.
2944
  * Function returns control, having informed the system
2945
    an information on request. Play itself goes independently from
2946
    the program.
2947
  * The data must be kept in the memory at least up to the end
2948
    of play.
114 mikedld 2949
 
2950
======================================================================
118 diamond 2951
================ Function 58 - work with file system. ================
114 mikedld 2952
======================================================================
2953
Parameters:
2954
  * eax = 58
118 diamond 2955
  * ebx = pointer to the information structure
114 mikedld 2956
Returned value:
118 diamond 2957
  * eax = 0 - success; otherwise file system error code
2958
  * some subfunctions return value in other registers too
2959
General format of the information structure:
2960
  * +0: dword: subfunction number
114 mikedld 2961
  * +4: dword: number of block
2962
  * +8: dword: size
118 diamond 2963
  * +12 = +0xC: dword: pointer to data
2964
  * +16 = +0x10: dword: pointer to a memory for system operations
114 mikedld 2965
    (4096 bytes)
118 diamond 2966
  * +20 = +0x14: n db: ASCIIZ-string with the file name
2967
Specifications - in documentation on the appropriate subfunction.
2968
Filename is case-insensitive for latin letters, russian letters
2969
must be capital.
2970
Format of filename:
114 mikedld 2971
/base/number/dir1/dir2/.../dirn/file,
118 diamond 2972
where /base/number identifies device, on which file is located:
114 mikedld 2973
one of
118 diamond 2974
  * /RD/1 = /RAMDISK/1 to access ramdisk
2975
  * /FD/1 = /FLOPPYDISK/1 to access first floppy drive,
2976
    /FD/2 = /FLOPPYDISK/2 to access second one
2977
  * /HD/x = /HARDDISK/x - obsolete variant of access to hard disk
2978
    (in this case base is defined by subfunction 7 of function 21),
2979
    x - partition number (beginning from 1)
2980
  * /HD0/x, /HD1/x, /HD2/x, /HD3/x to access accordingly to devices
2981
    IDE0 (Primary Master), IDE1 (Primary Slave),
114 mikedld 2982
    IDE2 (Secondary Master), IDE3 (Secondary Slave);
118 diamond 2983
    x - partition number on the selected hard drive, varies from 1
2984
    to 255 (on each hard drive the indexing starts from 1)
114 mikedld 2985
Remarks:
118 diamond 2986
  * In the first two cases it is also possible to use FIRST
2987
    instead of 1, SECOND instead of 2, but it is not recommended
2988
    for convenience of transition to the future extensions.
2989
  * Limitation n<=39 is imposed.
2990
  * Names of folders and file dir1,...,dirn,file must have the
2991
    format 8.3: name no more than 8 characters, dot, extension no
2992
    more than 3 characters. Trailing spaces are ignored, no other
2993
    spaces is allowed. If name occupies equally 8 characters,
2994
    dot may be omitted (though it is not recommended to use this
2995
    feature for convenience of transition to the future extensions).
2996
  * This function does not support folders on ramdisk.
114 mikedld 2997
Examples:
2998
  * '/RAMDISK/FIRST/KERNEL.ASM',0
2999
    '/rd/1/kernel.asm',0
3000
  * '/HD0/1/kernel.asm',0
3001
  * '/hd0/1/menuet/pics/tanzania.bmp',0
118 diamond 3002
Existing subfunctions:
3003
  * subfunction 0 - read file/folder
3004
  * subfunction 8 - LBA-read from device
3005
  * subfunction 15 - get file system information
114 mikedld 3006
 
3007
======================================================================
118 diamond 3008
=========== Function 58, subfunction 0 - read file/folder. ===========
114 mikedld 3009
======================================================================
3010
Parameters:
3011
  * eax = 58
118 diamond 3012
  * ebx = pointer to the information structure
3013
Format of the information structure:
3014
  * +0: dword: 0 = subfunction number
3015
  * +4: dword: first block to read (beginning from 0)
3016
  * +8: dword: amount of blocks to read
3017
  * +12 = +0xC: dword: pointer to buffer for data
3018
  * +16 = +0x10: dword: pointer to buffer for system operations
114 mikedld 3019
    (4096 bytes)
118 diamond 3020
  * +20 = +0x14: ASCIIZ-name of file, the rules of names forming are
3021
    given in the general description
114 mikedld 3022
Returned value:
118 diamond 3023
  * eax = 0 - success, otherwise file system error code
3024
  * ebx = file size (in bytes) or -1=0xffffffff, if file was not found
114 mikedld 3025
Remarks:
118 diamond 3026
  * Block size is 512 bytes.
114 mikedld 3027
  * This function is obsolete, for reading files use subfunction 0
118 diamond 3028
    of function 70, for reading folders - subfunction 1 of
3029
    function 70.
3030
  * Function can read contents of a folder. Only FAT file system is
3031
    supported. The format of FAT-folder is described
3032
    in any FAT documentation.
3033
  * Size of a folder is determined by size of FAT clusters chain.
3034
  * If file was ended before last requested block was read,
3035
    the function will read as many as it can, and after that return
3036
    eax=6 (EOF).
3037
  * Function can read root folders /rd/1,/fd/x,/hd[n]/x, but
3038
    in the first two cases the current implementation does not follow
3039
    to the declared rules:
114 mikedld 3040
    for /rd/1:
118 diamond 3041
    * if one want to read 0 blocks, function considers,
3042
      that he requested 1;
3043
    * if one requests more than 14 blocks or starting block is
3044
      not less than 14, function returns eax=5 (not found) и ebx=-1;
3045
    * size of ramdisk root folder is 14 blocks,
3046
      0x1C00=7168 байт; but function returns ebx=0
3047
      (except of the case of previous item);
3048
    * strangely enough, it is possible to read 14th block (which
3049
      generally contains a garbage - I remind, the indexing begins
3050
      from 0);
3051
    * if some block with the number not less than 14 was requested,
3052
      function returns eax=6(EOF); otherwise eax=0.
3053
    For /fd/x:
3054
    * if the start block is not less than 14, function returns
3055
      eax=5 (not found) and ebx=0;
3056
    * note that format of FAT12 allows floppies with the root size
3057
      more or less than 14 blocks;
3058
    * check for length is not performed;
3059
    * if data was successful read, function returns
3060
      eax=0,ebx=0; otherwise eax=10 (access denied), ebx=-1.
3061
  * The function handles reading of special folders /,/rd,/fd,/hd[n];
3062
    but the result does not correspond to expected (on operations with
3063
    normal files/folders), does not follow the declared rules,
3064
    may be changed in future versions of the kernel and consequently
3065
    is not described. To obtain the information about the equipment
3066
    use subfunction 11 of function 18 or
3067
    read corresponding folder with subfunction 1 of function 70.
114 mikedld 3068
 
3069
======================================================================
118 diamond 3070
========= Function 58, subfunction 8 - LBA-read from device. =========
114 mikedld 3071
======================================================================
3072
Parameters:
118 diamond 3073
  * eax = 58 - function number
3074
  * ebx = pointer to the information structure
3075
Format of the information structure:
3076
  * +0: dword: 8 = subfunction number
3077
  * +4: dword: number of block to read (beginning from 0)
3078
  * +8: dword: ignored (set to 1)
3079
  * +12 = +0xC: dword: pointer to buffer for data (512 bytes)
3080
  * +16 = +0x10: dword: pointer to buffer for system operations
114 mikedld 3081
    (4096 bytes)
118 diamond 3082
  * +20 = +0x14: ASCIIZ-name of device: case-insensitive, one of
3083
    /rd/1 = /RamDisk/1, /hd/n = /HardDisk/n,
114 mikedld 3084
    1<=n<=4 - number of device: 1=IDE0, ..., 4=IDE3.
118 diamond 3085
    Instead of digits it is allowed, though not recommended for
3086
    convenience of transition to future extensions, to use
3087
    'first','second','third','fourth'.
114 mikedld 3088
Returned value:
118 diamond 3089
  * for device name /hd/xxx, where xxx is not in the list above:
114 mikedld 3090
    * eax = ebx = 1
118 diamond 3091
  * for invalid device name (except for the previous case):
114 mikedld 3092
    * eax = 5
118 diamond 3093
    * ebx does not change
3094
  * if LBA-access is disabled by subfunction 11 of function 21:
114 mikedld 3095
    * eax = 2
118 diamond 3096
    * ebx destroyed
3097
  * for ramdisk: attempt to read block outside ramdisk
3098
    (18*2*80 blocks) results in
114 mikedld 3099
    * eax = 3
3100
    * ebx = 0
118 diamond 3101
  * for successful read:
114 mikedld 3102
    * eax = ebx = 0
3103
Remarks:
118 diamond 3104
  * Block size is 512 bytes; function reads one block.
3105
  * Do not depend on returned value, it can be changed
3106
    in future versions.
3107
  * Function requires that LBA-access to devices is enabled by
3108
    subfunction 11 of function 21. To check this one can use
3109
    subfunction 11 of function 26.
3110
  * LBA-read of floppy is not supported.
3111
  * Function reads data on physical hard drive; if for any reason
3112
    data of the concrete partition are required, application must
3113
    define starting sector of this partition (either directly
3114
    through MBR, or from the full structure returned by
3115
    подфункцией 11 функции 18).
3116
  * Function does not check error code of hard disk, so request of
3117
    nonexisting sector reads something (most probably it will be
3118
    zeroes, but this is defined by device) and this is considered
3119
    as success (eax=0).
114 mikedld 3120
 
118 diamond 3121
======================================================================
3122
==== Function 58, subfunction 15 - get information on file system. ===
3123
======================================================================
114 mikedld 3124
Parameters:
118 diamond 3125
  * eax = 58 - function number
3126
  * ebx = pointer to the information structure
3127
Format of the information structure:
3128
  * +0: dword: 15 = subfunction number
114 mikedld 3129
  * +4: dword: ignored
3130
  * +8: dword: ignored
3131
  * +12 = +0xC: dword: ignored
3132
  * +16 = +0x10: dword: ignored
118 diamond 3133
  * +20 = +0x14: (only second character is checked)
114 mikedld 3134
    /rd=/RAMDISK or /hd=/HARDDISK
3135
Returned value:
118 diamond 3136
  * if the second character does not belong to set {'r','R','h','H'}:
114 mikedld 3137
    * eax = 3
3138
    * ebx = ecx = dword [fileinfo] = 0
3139
  * for ramdisk:
3140
    * eax = 0 (success)
3141
    * ebx = total number of clusters = 2847
3142
    * ecx = number of free clusters
3143
    * dword [fileinfo] = cluster size = 512
118 diamond 3144
  * for hard disk: base and partition are defined by subfunctions
3145
    7 and 8 of function 21:
114 mikedld 3146
    * eax = 0 (success)
3147
    * ebx = total number of clusters
3148
    * ecx = number of free clusters
3149
    * dword [fileinfo] = cluster size (in bytes)
3150
Remarks:
118 diamond 3151
  * Be not surprised to strange layout of 4th returned parameter
3152
    - when this code was writing, at system calls application got
3153
    only registers eax,ebx,ecx (from pushad-structure transmitted
3154
    as argument to the system function). Now it is corrected, so,
3155
    probably, it is meaningful to return cluster size in edx, while
3156
    this function is not used yet.
3157
  * There exists also subfunction 11 of function 18,
3158
    which returns information on file system. From the full table
3159
    of disk subsystem it is possible to deduce cluster size (there
3160
    it is stored in sectors) and total number of clusters
3161
    for hard disks.
114 mikedld 3162
 
3163
======================================================================
118 diamond 3164
========== Function 60 - Inter Process Communication (IPC). ==========
114 mikedld 3165
======================================================================
118 diamond 3166
IPC is used for message dispatching from one process/thread to
3167
another. Previously it is necessary to agree how to interpret
114 mikedld 3168
the concrete message.
3169
 
118 diamond 3170
----------- Subfunction 1 - set the area for IPC receiving -----------
3171
Is called by process-receiver.
114 mikedld 3172
Parameters:
118 diamond 3173
  * eax = 60 - function number
3174
  * ebx = 1 - subfunction number
3175
  * ecx = pointer to the buffer
3176
  * edx = size of the buffer
114 mikedld 3177
Returned value:
118 diamond 3178
  * eax = 0 - always success
3179
Format of IPC-buffer:
3180
  * +0: dword: if nonzero, buffer is considered locked;
3181
    lock/unlock the buffer, when you work with it and need that
3182
    buffer data are not changed from outside (no new messages)
114 mikedld 3183
  * +4: dword: occupied place in the buffer (in bytes)
3184
  * +8: first message
3185
  * +8+n: second message
3186
  * ...
118 diamond 3187
Format of a message:
3188
  * +0: dword: PID of sender
3189
  * +4: dword: message length (not including this header)
3190
  * +8: n*byte: message data
114 mikedld 3191
 
118 diamond 3192
------------------ Subfunction 2 - send IPC message ------------------
3193
Is called by process-sender.
114 mikedld 3194
Parameters:
118 diamond 3195
  * eax = 60 - function number
3196
  * ebx = 2 - subfunction number
114 mikedld 3197
  * ecx = PID of receiver
118 diamond 3198
  * edx = pointer to the message data
3199
  * esi = message length (in bytes)
114 mikedld 3200
Returned value:
118 diamond 3201
  * eax = 0 - success
3202
  * eax = 1 - the receiver has not defined buffer for IPC messages
3203
    (can be, still have no time,
3204
    and can be, this is not right process)
3205
  * eax = 2 - the receiver has blocked IPC-buffer; try to wait a bit
3206
  * eax = 3 - overflow of IPC-buffer of the receiver
114 mikedld 3207
  * eax = 4 - process/thread with such PID does not exist
3208
Remarks:
118 diamond 3209
  * Immediately after writing of IPC-message to the buffer the system
3210
    sends to the receiver the event with code 7 (see event codes).
114 mikedld 3211
 
3212
======================================================================
118 diamond 3213
==== Function 61 - get parameters for the direct graphics access. ====
114 mikedld 3214
======================================================================
118 diamond 3215
The data of the graphics screen (the memory area which displays
3216
screen contents) are accessible to a program directly, without
3217
any system calls, through the selector gs:
131 diamond 3218
	mov	eax, [gs:0]
118 diamond 3219
places in eax the first dword of the buffer, which contains
3220
information on color of the left upper point (and, possibly, colors
3221
of several following).
131 diamond 3222
	mov	[gs:0], eax
118 diamond 3223
by work in VESA modes with LFB sets color of the left upper point
3224
(and, possibly, colors of several following).
3225
To interpret the data of graphics screen program needs to know
3226
some parameters, returning by this function.
114 mikedld 3227
Remarks:
118 diamond 3228
  * Graphics parameters changes very seldom at work,
3229
    namely, only in cases, when user works with the application VRR.
3230
  * At videomode change the system redraws all windows (event
3231
    with code 1) and redraws the background (event 5).
3232
    Same events occur in other cases too, which meet much more often,
3233
    than videomode change.
3234
  * By operation in videomodes with LFB the selector gs points to
3235
    LFB itself, so reading/writing on gs result directly in
3236
    change of screen contents. By operation in videomodes without
3237
    LFB gs points to some data area in the kernel, and all functions
3238
    of screen output fulfil honesty double operation on writing
3239
    directly to the screen and writing to this buffer. In result
3240
    at reading contents of this buffer the results correspond to
3241
    screen contents (with, generally speaking, large color
3242
    resolution), and writing is ignored.
3243
    One exception is the mode 320*200, for which main loop of the
3244
    system thread updates the screen according to mouse movements.
114 mikedld 3245
 
3246
------------------------- Screen resolution --------------------------
3247
Parameters:
118 diamond 3248
  * eax = 61 - function number
3249
  * ebx = 1 - subfunction number
114 mikedld 3250
Returned value:
118 diamond 3251
  * eax = [resolution on x axis]*65536 + [resolution on y axis]
114 mikedld 3252
Remarks:
118 diamond 3253
  * One can use function 14 paying attention that
3254
    it returns sizes on 1 pixel less. It is fully equivalent way.
114 mikedld 3255
 
118 diamond 3256
---------------------- Number of bits per pixel ----------------------
114 mikedld 3257
Parameters:
118 diamond 3258
  * eax = 61 - function number
3259
  * ebx = 2 - subfunction number
114 mikedld 3260
Returned value:
118 diamond 3261
  * eax = number of bits per pixel (24 or 32)
114 mikedld 3262
 
118 diamond 3263
-------------------- Number of bytes per scanline --------------------
114 mikedld 3264
Parameters:
118 diamond 3265
  * eax = 61 - function number
3266
  * ebx = 3 - subfunction number
114 mikedld 3267
Returned value:
118 diamond 3268
  * eax = number of bytes occupied by one scanline
114 mikedld 3269
    (horizontal line on the screen)
3270
 
3271
======================================================================
118 diamond 3272
===== Function 62, subfunction 0 - get version of PCI-interface. =====
114 mikedld 3273
======================================================================
3274
Parameters:
118 diamond 3275
  * eax = 62 - function number
3276
  * bl = 0 - subfunction number
114 mikedld 3277
Returned value:
118 diamond 3278
  * eax = -1 - PCI access is disabled; otherwise
3279
  * ah.al = version of PCI-interface (ah=version, al=subversion)
3280
  * high word of eax is zeroed
114 mikedld 3281
Remarks:
118 diamond 3282
  * Previously low-level access to PCI for applications must be
3283
    enabled by subfunction 12 of function 21.
3284
  * If PCI BIOS is not supported, the value of ax is undefined.
114 mikedld 3285
 
3286
======================================================================
118 diamond 3287
==== Function 62, subfunction 1 - get number of the last PCI-bus. ====
114 mikedld 3288
======================================================================
3289
Parameters:
118 diamond 3290
  * eax = 62 - function number
3291
  * bl = 1 - subfunction number
114 mikedld 3292
Returned value:
118 diamond 3293
  * eax = -1 - access to PCI is disabled; otherwise
3294
  * al = number of the last PCI-bus; other bytes of eax are destroyed
114 mikedld 3295
Remarks:
118 diamond 3296
  * Previously low-level access to PCI for applications must be
3297
    enabled by subfunction 12 of function 21.
3298
  * If PCI BIOS is not supported, the value of ax is undefined.
114 mikedld 3299
 
3300
======================================================================
118 diamond 3301
===================== Function 62, subfunction 2 =====================
3302
===== Get mechanism of addressing to the PCI configuration space. ====
114 mikedld 3303
======================================================================
3304
Parameters:
118 diamond 3305
  * eax = 62 - function number
3306
  * bl = 2 - subfunction number
114 mikedld 3307
Returned value:
118 diamond 3308
  * eax = -1 - access to PCI is disabled; otherwise
3309
  * al = mechanism (1 or 2); other bytes of eax are destroyed
114 mikedld 3310
Remarks:
118 diamond 3311
  * Previously low-level access to PCI for applications must be
3312
    enabled by subfunction 12 of function 21.
3313
  * Addressing mechanism is selected depending on
3314
    equipment characteristics.
3315
  * Subfunctions of read and write work automatically
3316
    with the selected mechanism.
114 mikedld 3317
 
3318
======================================================================
118 diamond 3319
======== Function 62, subfunctions 4,5,6 - read PCI-register. ========
114 mikedld 3320
======================================================================
3321
Parameters:
118 diamond 3322
  * eax = 62 - function number
3323
  * bl = 4 - read byte
3324
  * bl = 5 - read word
3325
  * bl = 6 - read dword
114 mikedld 3326
  * bh = number of PCI-bus
118 diamond 3327
  * ch = dddddfff, where ddddd = number of the device on the bus,
3328
    fff = function number of device
3329
  * cl = number of register (must be even for bl=5,
3330
    divisible by 4 for bl=6)
114 mikedld 3331
Returned value:
118 diamond 3332
  * eax = -1 - error (access to PCI is disabled or parameters
3333
    are not supported); otherwise
3334
  * al/ax/eax (depending on requested size) contains the data;
3335
    the other part of register eax is destroyed
114 mikedld 3336
Remarks:
118 diamond 3337
  * Previously low-level access to PCI for applications must be
3338
    enabled by subfunction 12 of function 21.
3339
  * Access mechanism 2 supports only 16 devices on a bus and ignores
3340
    function number. To get access mechanism use subfunction 2.
3341
  * Some registers are standard and exist for all devices, some are
3342
    defined by the concrete device. The list of registers of the
3343
    first type can be found e.g. in famous
114 mikedld 3344
    Interrupt List by Ralf Brown
3345
    (http://www.pobox.com/~ralf/files.html,
3346
    ftp://ftp.cs.cmu.edu/afs/cs/user/ralf/pub/);
118 diamond 3347
    registers of the second type must be listed
3348
    in the device documentation.
114 mikedld 3349
 
3350
======================================================================
118 diamond 3351
====== Function 62, subfunctions 8,9,10 - write to PCI-register. =====
114 mikedld 3352
======================================================================
3353
Parameters:
118 diamond 3354
  * eax = 62 - function number
3355
  * bl = 8 - write byte
3356
  * bl = 9 - write word
3357
  * bl = 10 - write dword
114 mikedld 3358
  * bh = number of PCI-bus
118 diamond 3359
  * ch = dddddfff, where ddddd = number of the device on the bus,
3360
    fff = function number of device
3361
  * cl = number of register (must be even for bl=9,
3362
    divisible by 4 for bl=10)
3363
  * dl/dx/edx (depending on requested size) contatins
3364
    the data to write
114 mikedld 3365
Returned value:
118 diamond 3366
  * eax = -1 - error (access to PCI is disabled or parameters
3367
    are not supported)
3368
  * eax = 0 - success
114 mikedld 3369
Remarks:
118 diamond 3370
  * Previously low-level access to PCI for applications must be
3371
    enabled by subfunction 12 of function 21.
3372
  * Access mechanism 2 supports only 16 devices on a bus and ignores
3373
    function number. To get access mechanism use subfunction 2.
3374
  * Some registers are standard and exist for all devices, some are
3375
    defined by the concrete device. The list of registers of the
3376
    first type can be found e.g. in famous Interrupt List by
3377
    Ralf Brown; registers of the second type must be listed
3378
    in the device documentation.
114 mikedld 3379
 
3380
======================================================================
118 diamond 3381
============== Function 63 - work with the debug board. ==============
114 mikedld 3382
======================================================================
118 diamond 3383
The debug board is the global system buffer (with the size
499 diamond 3384
1024 bytes), to which any program can write (generally speaking,
118 diamond 3385
arbitrary) data and from which other program can read these data.
3386
By the agreement written data are text strings interpreted as
3387
debug messages on a course of program execution. The kernel in
3388
some situations also writes to the debug board information on
3389
execution of some functions; by the agreement kernel messages
3390
begins from the prefix "K : ".
3391
For view of the debug board the application 'board' was created,
3392
which reads data from the buffer and displays them in its window.
3393
'board' interpretes the sequence of codes 13,10 as newline.
3394
A character with null code in an end of line is not necessary,
114 mikedld 3395
but also does not prevent.
118 diamond 3396
Because debugger has been written, the value of the debug board
3397
has decreased, as debugger allows to inspect completely a course of
3398
program execution without any efforts from the direction of program
3399
itself. Nevertheless in some cases the debug board is still useful.
114 mikedld 3400
 
118 diamond 3401
----------------------------- Write byte -----------------------------
114 mikedld 3402
Parameters:
118 diamond 3403
  * eax = 63 - function number
3404
  * ebx = 1 - subfunction number
3405
  * cl = data byte
114 mikedld 3406
Returned value:
3407
  * function does not return value
3408
Remarks:
118 diamond 3409
  * Byte is written to the buffer. Buffer size is 512 bytes.
3410
    At buffer overflow all obtained data are lost.
3411
  * For output to the debug board of more complicated objects
3412
    (strings, numbers) it is enough to call this function in cycle.
3413
    It is possible not to write the appropriate code manually and use
3414
    file 'debug.inc', which is included into the distributive.
114 mikedld 3415
 
118 diamond 3416
----------------------------- Read byte ------------------------------
3417
Takes away byte from the buffer.
114 mikedld 3418
Parameters:
118 diamond 3419
  * eax = 63 - function number
3420
  * ebx = 2 - subfunction number
114 mikedld 3421
Returned value:
118 diamond 3422
  * eax = ebx = 0 - the buffer is empty
3423
  * eax = byte, ebx = 1 - byte was successfully read
114 mikedld 3424
 
3425
======================================================================
118 diamond 3426
============== Function 64 - resize application memory. ==============
114 mikedld 3427
======================================================================
3428
Parameters:
118 diamond 3429
  * eax = 64 - function number
3430
  * ebx = 1 - unique subfunction
3431
  * ecx = new memory size
114 mikedld 3432
Returned value:
118 diamond 3433
  * eax = 0 - success
3434
  * eax = 1 - not enough memory
114 mikedld 3435
Remarks:
193 diamond 3436
  * There is another way to dynamically allocate/free memory -
3437
    subfunctions 11, 12, 13 of function 68.
3438
  * The function cannot be used together with 68.11, 68.12, 68.13.
3439
    The function call will be ignored after creation of process heap
3440
    with function 68.11.
114 mikedld 3441
 
3442
======================================================================
283 diamond 3443
======== Function 65 - draw image with palette in the window. ========
3444
======================================================================
3445
Parameters:
3446
  * eax = 65 - function number
3447
  * ebx = pointer to the image
3448
  * ecx = [size on axis x]*65536 + [size on axis y]
3449
  * edx = [coordinate on axis x]*65536 + [coordinate on axis y]
314 diamond 3450
  * esi = number of bits per pixel, must be 8, 24 or 32
3451
  * edi = pointer to palette (256 colors 0x00RRGGBB);
3452
          ignored when esi = 24 and 32
3453
  * ebp = offset of next row data relative to previous row data
283 diamond 3454
Returned value:
3455
  * function does not return value
3456
Remarks:
3457
  * Coordinates of the image are coordinates of the upper left corner
3458
    of the image relative to the window.
3459
  * Size of the image in bytes is xsize*ysize.
3460
  * Each byte of image is index in the palette.
3461
  * If the image uses less than 256 colors, palette size may be
3462
    less than 256 too.
314 diamond 3463
  * The call to function 7 is equivalent to call to this function
3464
    with esi=24, ebp=0.
283 diamond 3465
 
3466
======================================================================
118 diamond 3467
================== Function 66 - work with keyboard. =================
114 mikedld 3468
======================================================================
118 diamond 3469
The input mode influences results of reading keys by function 2.
3470
When a program loads, ASCII input mode is set for it.
114 mikedld 3471
 
118 diamond 3472
-------------- Subfunction 1 - set keyboard input mode. --------------
114 mikedld 3473
Parameters:
118 diamond 3474
  * eax = 66 - function number
3475
  * ebx = 1 - subfunction number
114 mikedld 3476
  * ecx = mode:
3477
    * 0 = normal (ASCII-characters)
3478
    * 1 = scancodes
3479
Returned value:
3480
  * function does not return value
3481
 
118 diamond 3482
-------------- Subfunction 2 - get keyboard input mode. --------------
114 mikedld 3483
Parameters:
118 diamond 3484
  * eax = 66 - function number
3485
  * ebx = 2 - subfunction number
114 mikedld 3486
Returned value:
3487
  * eax = current mode
3488
 
118 diamond 3489
------------ Subfunction 3 - get status of control keys. -------------
114 mikedld 3490
Parameters:
118 diamond 3491
  * eax = 66 - function number
3492
  * ebx = 3 - subfunction number
114 mikedld 3493
Returned value:
3494
  * eax = bit mask:
118 diamond 3495
  * bit 0 (mask 1): left Shift is pressed
3496
  * bit 1 (mask 2): right Shift is pressed
3497
  * bit 2 (mask 4): left Ctrl is pressed
3498
  * bit 3 (mask 8): right Ctrl is pressed
3499
  * bit 4 (mask 0x10): left Alt is pressed
3500
  * bit 5 (mask 0x20): right Alt is pressed
3501
  * bit 6 (mask 0x40): CapsLock is on
3502
  * bit 7 (mask 0x80): NumLock is on
3503
  * bit 8 (mask 0x100): ScrollLock is on
3504
  * other bits are cleared
114 mikedld 3505
 
118 diamond 3506
-------------- Subfunction 4 - set system-wide hotkey. ---------------
3507
When hotkey is pressed, the system notifies only those applications,
3508
which have installed it; the active application (which receives
3509
all normal input) does not receive such keys.
3510
The notification consists in sending event with the code 2.
3511
Reading hotkey is the same as reading normal key - by function 2.
114 mikedld 3512
Parameters:
118 diamond 3513
  * eax = 66 - function number
3514
  * ebx = 4 - subfunction number
3515
  * cl determines key scancode;
3516
    use cl=0 to give combinations such as Ctrl+Shift
3517
  * edx = 0xXYZ determines possible states of control keys:
3518
    * Z (low 4 bits) determines state of LShift and RShift:
3519
      * 0 = no key must be pressed;
3520
      * 1 = exactly one key must be pressed;
3521
      * 2 = both keys must be pressed;
3522
      * 3 = must be pressed LShift, but not RShift;
3523
      * 4 = must be pressed RShift, but not LShift
3524
    * Y - similar for LCtrl and RCtrl;
3525
    * X - similar for LAlt and RAlt
114 mikedld 3526
Returned value:
118 diamond 3527
  * eax=0 - success
3528
  * eax=1 - too mant hotkeys (maximum 256 are allowed)
114 mikedld 3529
Remarks:
118 diamond 3530
  * Hotkey can work either at pressing or at release. Release
3531
    scancode of a key is more on 128 than pressing scancode
3532
    (i.e. high bit is set).
3533
  * Several applications can set the same combination;
3534
    all such applications will be informed on pressing
3535
    such combination.
114 mikedld 3536
 
118 diamond 3537
-------------- Subfunction 5 - delete installed hotkey. --------------
114 mikedld 3538
Parameters:
118 diamond 3539
  * eax = 66 - function number
3540
  * ebx = 5 - subfunction number
3541
  * cl = scancode of key and edx = 0xXYZ the same as in subfunction 4
114 mikedld 3542
Returned value:
118 diamond 3543
  * eax = 0 - success
114 mikedld 3544
  * eax = 1 - there is no such hotkey
3545
Remarks:
118 diamond 3546
  * When a process/thread terminates, all hotkey installed by it are
3547
    deleted.
3548
  * The call to this subfunction does not affect other applications.
3549
    If other application has defined the same combination, it will
3550
    still receive notices.
114 mikedld 3551
 
3552
======================================================================
118 diamond 3553
========= Function 67 - change position/sizes of the window. =========
114 mikedld 3554
======================================================================
3555
Parameters:
118 diamond 3556
  * eax = 67 - function number
114 mikedld 3557
  * ebx = new x-coordinate of the window
3558
  * ecx = new y-coordinate of the window
3559
  * edx = new x-size of the window
3560
  * esi = new y-size of the window
3561
Returned value:
3562
  * function does not return value
3563
Remarks:
118 diamond 3564
  * The value -1 for a parameter means "do not change"; e.g. to move
3565
    the window without resizing it is possible to specify edx=esi=-1.
3566
  * Previously the window must be defined by function 0.
114 mikedld 3567
    It sets initial coordinates and sizes of the window.
118 diamond 3568
  * Sizes of the window are understood in sense of function 0,
3569
    that is one pixel less than real sizes.
3570
  * The function call for maximized windows is simply ignored.
3571
  * For windows of appropriate styles position and/or sizes can be
3572
    changed by user; current position and sizes can be obtained by
3573
    call to function 9.
3574
  * The function sends to the window redraw event (with the code 1).
114 mikedld 3575
 
3576
======================================================================
118 diamond 3577
====== Function 68, subfunction 0 - get the task switch counter. =====
114 mikedld 3578
======================================================================
3579
Parameters:
118 diamond 3580
  * eax = 68 - function number
3581
  * ebx = 0 - subfunction number
114 mikedld 3582
Returned value:
118 diamond 3583
  * eax = number of task switches from the system booting
3584
    (modulo 2^32)
114 mikedld 3585
 
3586
======================================================================
118 diamond 3587
======= Function 68, subfunction 1 - switch to the next thread. ======
114 mikedld 3588
======================================================================
118 diamond 3589
The function completes the current time slice allocated to the
3590
thread and switches to the next. (Which thread in which process
3591
will be next, is unpredictable). Later, when execution queue
3592
will reach the current thread, execution will be continued.
114 mikedld 3593
Parameters:
118 diamond 3594
  * eax = 68 - function number
3595
  * ebx = 1 - subfunction number
114 mikedld 3596
Returned value:
3597
  * function does not return value
3598
 
3599
======================================================================
118 diamond 3600
============= Function 68, subfunction 2 - cache + rdpmc. ============
114 mikedld 3601
======================================================================
3602
Parameters:
118 diamond 3603
  * eax = 68 - function number
3604
  * ebx = 2 - subfunction number
3605
  * ecx = required action:
3606
    * ecx = 0 - enable instruction 'rdpmc'
3607
      (ReaD Performance-Monitoring Counters) for applications
3608
    * ecx = 1 - find out whether cache is disabled/enabled
3609
    * ecx = 2 - enable cache
3610
    * ecx = 3 - disable cache
114 mikedld 3611
Returned value:
3612
  * for ecx=0:
118 diamond 3613
    * eax = the value of cr4
114 mikedld 3614
  * for ecx=1:
3615
    * eax = (cr0 and 0x60000000):
118 diamond 3616
    * eax = 0 - cache is on
3617
    * eax <> 0 - cache is off
114 mikedld 3618
  * for ecx=2 and ecx=3:
3619
    * function does not return value
3620
 
3621
======================================================================
3622
=========== Function 68, subfunction 3 - read MSR-register. ==========
3623
======================================================================
118 diamond 3624
MSR = Model Specific Register; the complete list of MSR-registers
3625
of a processor is included to the documentation on it (for example,
3626
IA-32 Intel Architecture Software Developer's Manual,
3627
Volume 3, Appendix B); each processor family has its own subset
3628
of the MSR-registers.
114 mikedld 3629
Parameters:
118 diamond 3630
  * eax = 68 - function number
3631
  * ebx = 3 - subfunction number
3632
  * ecx is ignored
3633
  * edx = MSR address
114 mikedld 3634
Returned value:
118 diamond 3635
  * ebx:eax = high:low dword of the result
114 mikedld 3636
Remarks:
118 diamond 3637
  * If ecx contains nonexistent or not implemented for this processor
3638
    MSR, processor will generate an exception in the kernel, which
3639
    will kill the thread.
3640
  * Previously it is necessary to check, whether MSRs are supported
3641
    as a whole, with the instruction 'cpuid'. Otherwise processor
3642
    will generate other exception in the kernel, which will anyway
3643
    kill the thread.
114 mikedld 3644
 
3645
======================================================================
118 diamond 3646
========= Function 68, subfunction 4 - write to MSR-register. ========
114 mikedld 3647
======================================================================
118 diamond 3648
MSR = Model Specific Register; the complete list of MSR-registers
3649
of a processor is included to the documentation on it (for example,
3650
IA-32 Intel Architecture Software Developer's Manual,
3651
Volume 3, Appendix B); each processor family has its own subset
3652
of the MSR-registers.
114 mikedld 3653
Parameters:
118 diamond 3654
  * eax = 68 - function number
3655
  * ebx = 4 - subfunction number
3656
  * ecx is ignored
3657
  * edx = MSR address
3658
  * esi:edi = high:low dword
114 mikedld 3659
Returned value:
499 diamond 3660
  * function does not return value
3661
Remarks:
118 diamond 3662
  * If ecx contains nonexistent or not implemented for this processor
3663
    MSR, processor will generate an exception in the kernel, which
3664
    will kill the thread.
3665
  * Previously it is necessary to check, whether MSRs are supported
3666
    as a whole, with the instruction 'cpuid'. Otherwise processor
3667
    will generate other exception in the kernel, which will anyway
3668
    kill the thread.
114 mikedld 3669
 
3670
======================================================================
193 diamond 3671
======= Function 68, subfunction 11 - initialize process heap. =======
114 mikedld 3672
======================================================================
3673
Parameters:
118 diamond 3674
  * eax = 68 - function number
193 diamond 3675
  * ebx = 11 - subfunction number
114 mikedld 3676
Returned value:
193 diamond 3677
  * eax = 0 - failed
3678
  * otherwise size of created heap
114 mikedld 3679
Remarks:
193 diamond 3680
  * The function call initializes heap, from which one can in future
3681
    allocate and free memory blocks with subfunctions 12 and 13.
3682
    Heap size is equal to total amount of free application memory.
3683
  * The second function call from the same process results in
3684
    returning the size of the existing heap.
3685
  * After creation of the heap calls to function 64 will be ignored.
114 mikedld 3686
 
3687
======================================================================
193 diamond 3688
======== Function 68, subfunction 12 - allocate memory block. ========
114 mikedld 3689
======================================================================
3690
Parameters:
118 diamond 3691
  * eax = 68 - function number
193 diamond 3692
  * ebx = 12 - subfunction number
3693
  * ecx = required size in bytes
114 mikedld 3694
Returned value:
193 diamond 3695
  * eax = pointer to the allocated block
114 mikedld 3696
Remarks:
193 diamond 3697
  * Before this call one must initialize process heap by call to
3698
    subfunction 11.
3699
  * The function allocates an integer number of pages (4 Kb) in such
3700
    way that the real size of allocated block is more than or equal to
3701
    requested size.
114 mikedld 3702
 
3703
======================================================================
193 diamond 3704
========== Function 68, subfunction 13 - free memory block. ==========
114 mikedld 3705
======================================================================
3706
Parameters:
118 diamond 3707
  * eax = 68 - function number
193 diamond 3708
  * ebx = 13 - subfunction number
3709
  * ecx = pointer to the memory block
114 mikedld 3710
Returned value:
193 diamond 3711
  * eax = 1 - success
3712
  * eax = 0 - failed
114 mikedld 3713
Remarks:
448 diamond 3714
  * The memory block must have been allocated by subfunction 12
3715
    or subfunction 20.
114 mikedld 3716
 
3717
======================================================================
193 diamond 3718
======== Function 68, subfunction 14 - wait for driver notify. =======
114 mikedld 3719
======================================================================
3720
Parameters:
118 diamond 3721
  * eax = 68 - function number
193 diamond 3722
  * ebx = 14 - subfunction number
3723
  * ecx = pointer to the buffer for information (8 bytes)
114 mikedld 3724
Returned value:
193 diamond 3725
  * buffer pointed to by ecx contains the following information:
3726
    * +0: dword: constant EV_INTR = 1
3727
    * +4: dword: driver data
114 mikedld 3728
Remarks:
193 diamond 3729
  * The current implementation at wait time uses "heavy" operations
3730
    of task switch.
114 mikedld 3731
 
3732
======================================================================
193 diamond 3733
====== Function 68, subfunction 15 - set FPU exception handler. ======
3734
======================================================================
3735
Parameters:
3736
  * eax = 68 - function number
3737
  * ebx = 15 - subfunction number
3738
  * ecx = address of the new exception handler
3739
Returned value:
3740
  * eax = address of the old exception handler (0, if it was not set)
3741
 
3742
======================================================================
3743
============= Function 68, subfunction 16 - load driver. =============
3744
======================================================================
3745
Parameters:
3746
  * eax = 68 - function number
3747
  * ebx = 16 - subfunction number
3748
  * ecx = pointer to ASCIIZ-string with driver name
3749
Returned value:
3750
  * eax = 0 - failed
3751
  * otherwise eax = driver handle
3752
Remarks:
3753
  * If the driver was not loaded yet, it is loaded;
3754
    if the driver was loaded yet, nothing happens.
3755
  * Driver name is case-sensitive.
3756
    Maximum length of the name is 16 characters, including
3757
    terminating null character, the rest is ignored.
346 diamond 3758
  * Driver ABC is loaded from file /rd/1/drivers/ABC.obj.
193 diamond 3759
 
3760
======================================================================
3761
============ Function 68, subfunction 17 - driver control. ===========
3762
======================================================================
3763
Parameters:
3764
  * eax = 68 - function number
3765
  * ebx = 17 - subfunction number
3766
  * ecx = pointer to the control structure:
3767
    * +0: dword: handle of driver
3768
    * +4: dword: code of driver function
3769
    * +8: dword: pointer to input data
3770
    * +12 = +0xC: dword: size of input data
3771
    * +16 = +0x10: dword: pointer to output data
3772
    * +20 = +0x14: dword: size of output data
3773
Returned value:
3774
  * eax = determined by driver
3775
Remarks:
3776
  * Function codes and the structure of input/output data
3777
    are defined by driver.
3778
  * Previously one must obtain driver handle by subfunction 16.
3779
 
3780
======================================================================
3781
====== Function 68, subfunction 18 - set SSE exception handler. ======
3782
======================================================================
3783
Parameters:
3784
  * eax = 68 - function number
3785
  * ebx = 15 - subfunction number
3786
  * ecx = address of the new exception handler
3787
Returned value:
3788
  * eax = address of the old exception handler (0, if it was not set)
3789
 
3790
======================================================================
277 diamond 3791
=============== Function 68, subfunction 19 - load DLL. ==============
3792
======================================================================
3793
Parameters:
3794
  * eax = 68 - function number
3795
  * ebx = 19 - subfunction number
3796
  * ecx = pointer to ASCIIZ-string with the full path to DLL
3797
Returned value:
3798
  * eax = 0 - failed
3799
  * otherwise eax = pointer to DLL export table
3800
Remarks:
3801
  * Export table is an array of structures of 2 dword's, terminated
3802
    by zero. The first dword in structure points to function name,
3803
    the second dword contains address of function.
3804
 
3805
======================================================================
448 diamond 3806
======= Function 68, subfunction 20 - reallocate memory block. =======
3807
======================================================================
3808
Parameters:
3809
  * eax = 68 - function number
3810
  * ebx = 20 - subfunction number
3811
  * ecx = new size in bytes
3812
  * edx = pointer to already allocated block
3813
Returned value:
3814
  * eax = pointer to the reallocated block, 0 = error
3815
Remarks:
3816
  * Before this call one must initialize process heap by call to
3817
    subfunction 11.
3818
  * The function allocates an integer number of pages (4 Kb) in such
3819
    way that the real size of allocated block is more than or equal to
3820
    requested size.
3821
  * If edx=0, the function call is equivalent to memory allocation
3822
    with subfunction 12. Otherwise the block at edx
3823
    must be allocated earlier with subfunction 12 or this subfunction.
3824
  * If ecx=0, the function frees memory block at edx and returns 0.
3825
  * The contents of the block are unchanged up to the shorter of
3826
    the new and old sizes.
3827
 
3828
======================================================================
118 diamond 3829
====================== Fucntion 69 - debugging. ======================
114 mikedld 3830
======================================================================
118 diamond 3831
A process can load other process as debugged by set of corresponding
193 diamond 3832
bit by call to subfunction 7 of function 70.
118 diamond 3833
A process can have only one debugger; one process can debug some
3834
others. The system notifies debugger on events occuring with
3835
debugged process. Messages are written to the buffer defined by
114 mikedld 3836
subfunction 0.
118 diamond 3837
Format of a message:
3838
  * +0: dword: message code
3839
  * +4: dword: PID of debugged process
3840
  * +8: there can be additional data depending on message code
3841
Message codes:
114 mikedld 3842
  * 1 = exception
118 diamond 3843
    * in addition dword-number of the exception is given
3844
    * process is suspended
3845
  * 2 = process has terminated
3846
    * comes at any termination: both through the system function -1,
3847
      and at "murder" by any other process (including debugger itself)
114 mikedld 3848
  * 3 = debug exception int 1 = #DB
118 diamond 3849
    * in addition dword-image of the register DR6 is given:
3850
      * bits 0-3: condition of the corresponding breakpoint (set by
3851
        subfunction 9) is satisfied
3852
      * бит 14: exception has occured because of the trace mode
3853
        (flag TF is set TF)
3854
    * process is suspended
3855
When debugger terminates, all debugged processes are killed.
3856
If debugger does not want this, it must previously detach by
114 mikedld 3857
subfunction 3.
3858
 
118 diamond 3859
All subfunctions are applicable only to processes/threads started
499 diamond 3860
from the current by function 70 with set debugging flag.
118 diamond 3861
Debugging of multithreaded programs is not supported yet.
3862
The full list of subfunctions:
3863
  * subfunction 0 - define data area for debug messages
3864
  * subfunction 1 - get contents of registers of debugged thread
3865
  * subfunction 2 - set contents of registers of debugged thread
3866
  * subfunction 3 - detach from debugged process
3867
  * subfunction 4 - suspend debugged thread
3868
  * subfunction 5 - resume debugged thread
3869
  * subfunction 6 - read from the memory of debugged process
3870
  * subfunction 7 - write to the memory of debugged process
3871
  * subfunction 8 - terminate debugged thread
3872
  * subfunction 9 - set/clear hardware breakpoint
114 mikedld 3873
 
3874
======================================================================
118 diamond 3875
= Function 69, subfunction 0 - define data area fror debug messages. =
114 mikedld 3876
======================================================================
3877
Parameters:
118 diamond 3878
  * eax = 69 - function number
3879
  * ebx = 0 - subfunction number
114 mikedld 3880
  * ecx = pointer
3881
Format of data area:
118 diamond 3882
  * +0: dword: N = buffer size (not including this header)
3883
  * +4: dword: occupied place
114 mikedld 3884
  * +8: N*byte: buffer
3885
Returned value:
3886
  * function does not return value
3887
Remarks:
118 diamond 3888
  * If the size field is negative, the buffer is considered locked
3889
    and at arrival of new message the system will wait.
3890
    For synchronization frame all work with the buffer by operations
3891
    lock/unlock
131 diamond 3892
    	neg	[bufsize]
118 diamond 3893
  * Data in the buffer are considered as array of items with variable
3894
    length - messages. Format of a message is explained in
3895
    general description.
114 mikedld 3896
 
3897
======================================================================
118 diamond 3898
===================== Function 69, subfunction 1 =====================
3899
============ Get contents of registers of debugged thread. ===========
114 mikedld 3900
======================================================================
3901
Parameters:
118 diamond 3902
  * eax = 69 - function number
3903
  * ebx = 1 - subfunction number
114 mikedld 3904
  * ecx = thread identifier
118 diamond 3905
  * edx = size of context structure, must be 0x28=40 bytes
3906
  * esi = pointer to context structure
114 mikedld 3907
Returned value:
3908
  * function does not return value
118 diamond 3909
Format of context structure: (FPU is not supported yet)
114 mikedld 3910
  * +0: dword: eip
3911
  * +4: dword: eflags
3912
  * +8: dword: eax
3913
  * +12 = +0xC: dword: ecx
3914
  * +16 = +0x10: dword: edx
3915
  * +20 = +0x14: dword: ebx
3916
  * +24 = +0x18: dword: esp
3917
  * +28 = +0x1C: dword: ebp
3918
  * +32 = +0x20: dword: esi
3919
  * +36 = +0x24: dword: edi
3920
Remarks:
118 diamond 3921
  * If the thread executes code of ring-0, the function returns
3922
    contents of registers of ring-3.
3923
  * Process must be loaded for debugging (as is shown in
3924
    general description).
114 mikedld 3925
 
3926
======================================================================
118 diamond 3927
===================== Function 69, subfunction 2 =====================
3928
============ Set contents of registers of debugged thread. ===========
114 mikedld 3929
======================================================================
3930
Parameters:
118 diamond 3931
  * eax = 69 - function number
3932
  * ebx = 2 - subfunction number
114 mikedld 3933
  * ecx = thread identifier
118 diamond 3934
  * edx = size of context structure, must be 0x28=40 bytes
114 mikedld 3935
Returned value:
3936
  * function does not return value
118 diamond 3937
Format of context structure is shown in the description of
3938
subfunction 1.
114 mikedld 3939
Remarks:
118 diamond 3940
  * If the thread executes code of ring-0, the function returns
3941
    contents of registers of ring-3.
3942
  * Process must be loaded for debugging (as is shown in
3943
    general description).
114 mikedld 3944
 
3945
======================================================================
118 diamond 3946
===== Function 69, subfunction 3 - detach from debugged process. =====
114 mikedld 3947
======================================================================
3948
Parameters:
118 diamond 3949
  * eax = 69 - function number
3950
  * ebx = 3 - subfunction number
114 mikedld 3951
  * ecx = identifier
3952
Returned value:
3953
  * function does not return value
3954
Remarks:
118 diamond 3955
  * If the process was suspended, it resumes execution.
114 mikedld 3956
 
3957
======================================================================
118 diamond 3958
======== Function 69, subfunction 4 - suspend debugged thread. =======
114 mikedld 3959
======================================================================
3960
Parameters:
118 diamond 3961
  * eax = 69 - function number
3962
  * ebx = 4 - subfunction number
3963
  * ecx = thread identifier
114 mikedld 3964
Returned value:
3965
  * function does not return value
3966
Remarks:
118 diamond 3967
  * Process must be loaded for debugging (as is shown in
3968
    general description).
114 mikedld 3969
 
3970
======================================================================
118 diamond 3971
======== Function 69, subfunction 5 - resume debugged thread. ========
114 mikedld 3972
======================================================================
3973
Parameters:
118 diamond 3974
  * eax = 69 - function number
3975
  * ebx = 5 - subfunction number
3976
  * ecx = thread identifier
114 mikedld 3977
Returned value:
3978
  * function does not return value
3979
Remarks:
118 diamond 3980
  * Process must be loaded for debugging (as is shown in
3981
    general description).
114 mikedld 3982
 
3983
======================================================================
118 diamond 3984
= Fucntion 69, subfunction 6 - read from memory of debugged process. =
114 mikedld 3985
======================================================================
3986
Parameters:
118 diamond 3987
  * eax = 69 - function number
3988
  * ebx = 6 - subfunction number
114 mikedld 3989
  * ecx = identifier
118 diamond 3990
  * edx = number of bytes to read
3991
  * esi = address in the memory of debugged process
3992
  * edi = pointer to buffer for data
114 mikedld 3993
Returned value:
118 diamond 3994
  * eax = -1 at an error (invalid PID or buffer)
3995
  * otherwise eax = number of read bytes (possibly, 0,
3996
    if esi is too large)
114 mikedld 3997
Remarks:
118 diamond 3998
  * Process must be loaded for debugging (as is shown in
3999
    general description).
114 mikedld 4000
 
4001
======================================================================
118 diamond 4002
== Function 69, subfunction 7 - write to memory of debugged process. =
114 mikedld 4003
======================================================================
4004
Parameters:
118 diamond 4005
  * eax = 69 - function number
4006
  * ebx = 7 - subfunction number
114 mikedld 4007
  * ecx = identifier
118 diamond 4008
  * edx = number of bytes to write
4009
  * esi = address of memory in debugged process
4010
  * edi = pointer to data
114 mikedld 4011
Returned value:
118 diamond 4012
  * eax = -1 at an error (invalid PID or buffer)
4013
  * otherwise eax = number of written bytes (possibly, 0,
4014
    if esi is too large)
114 mikedld 4015
Remarks:
118 diamond 4016
  * Process must be loaded for debugging (as is shown in
4017
    general description).
114 mikedld 4018
 
4019
======================================================================
118 diamond 4020
======= Function 69, subfunction 8 - terminate debugged thread. ======
114 mikedld 4021
======================================================================
4022
Parameters:
118 diamond 4023
  * eax = 69 - function number
4024
  * ebx = 8 - subfunction number
114 mikedld 4025
  * ecx = identifier
4026
Returned value:
4027
  * function does not return value
4028
Remarks:
118 diamond 4029
  * Process must be loaded for debugging (as is shown in
4030
    general description).
4031
  * The function is similar to subfunction 2 of function 18
4032
    with two differences: it requires first remark and
4033
    accepts PID rather than slot number.
114 mikedld 4034
 
4035
======================================================================
118 diamond 4036
===== Function 69, subfunction 9 - set/clear hardware breakpoint. ====
114 mikedld 4037
======================================================================
4038
Parameters:
118 diamond 4039
  * eax = 69 - function number
4040
  * ebx = 9 - subfunction number
114 mikedld 4041
  * ecx = thread identifier
118 diamond 4042
  * dl = index of breakpoint, from 0 to 3 inclusively
114 mikedld 4043
  * dh = flags:
118 diamond 4044
    * if high bit is cleared - set breakpoint:
114 mikedld 4045
      * bits 0-1 - condition:
4046
        * 00 = breakpoint on execution
118 diamond 4047
        * 01 = breakpoint on read
4048
        * 11 = breakpoint on read/write
4049
      * bits 2-3 - length; for breakpoints on exception it must be
4050
        00, otherwise one of
4051
        * 00 = byte
114 mikedld 4052
        * 01 = word
118 diamond 4053
        * 11 = dword
4054
      * esi = breakpoint address; must be aligned according to
4055
        the length (i.e. must be even for word breakpoints,
4056
        divisible by 4 for dword)
4057
    * if high bit is set - clear breakpoint
114 mikedld 4058
Returned value:
118 diamond 4059
  * eax = 0 - success
114 mikedld 4060
  * eax = 1 - error in the input data
118 diamond 4061
  * eax = 2 - (reserved, is never returned in the current
4062
    implementation) a global breakpoint with that index is already set
114 mikedld 4063
Remarks:
118 diamond 4064
  * Process must be loaded for debugging (as is shown in
4065
    general description).
4066
  * Hardware breakpoints are implemented through DRx-registers of
4067
    the processor, all limitations results from this.
4068
  * The function can reinstall the breakpoint, previously set
4069
    by it (and it does not inform on this).
4070
    Carry on the list of set breakpoints in the debugger.
4071
  * Breakpoints generate debug exception #DB, on which the system
4072
    notifies debugger.
4073
  * Breakpoints on write and read/write act after
4074
    execution of the caused it instruction.
114 mikedld 4075
 
4076
======================================================================
118 diamond 4077
==== Function 70 - work with file system with long names support. ====
114 mikedld 4078
======================================================================
4079
Parameters:
4080
  * eax = 70
118 diamond 4081
  * ebx = pointer to the information structure
114 mikedld 4082
Returned value:
118 diamond 4083
  * eax = 0 - success; otherwise file system error code
4084
  * some subfunctions return value in other registers too
4085
General format of the information structure:
4086
  * +0: dword: subfunction number
4087
  * +4: dword: file offset
4088
  * +8: dword: high dword of offset (must be 0) or flags field
114 mikedld 4089
  * +12 = +0xC: dword: size
118 diamond 4090
  * +16 = +0x10: dword: pointer to data
4091
  * +20 = +0x14: n db: ASCIIZ-string with the filename
114 mikedld 4092
    or
4093
  * +20 = +0x14: db 0
118 diamond 4094
  * +21 = +0x15: dd pointer to ASCIIZ-string with the filename
4095
Specifications - in documentation on the appropriate subfunction.
4096
Filename is case-insensitive. Russian letters must be written in
4097
the encoding cp866 (DOS).
4098
Format of filename:
114 mikedld 4099
/base/number/dir1/dir2/.../dirn/file,
118 diamond 4100
where /base/number identifies device, on which file is located:
114 mikedld 4101
one of
118 diamond 4102
  * /RD/1 = /RAMDISK/1 to access ramdisk
4103
  * /FD/1 = /FLOPPYDISK/1 to access first floppy drive,
4104
    /FD/2 = /FLOPPYDISK/2 to access second one
4105
  * /HD0/x, /HD1/x, /HD2/x, /HD3/x to access accordingly to devices
4106
    IDE0 (Primary Master), IDE1 (Primary Slave),
114 mikedld 4107
    IDE2 (Secondary Master), IDE3 (Secondary Slave);
118 diamond 4108
    x - partition number on the selected hard drive, varies from 1
4109
    to 255 (on each hard drive the indexing starts from 1)
4110
  * /CD0/1, /CD1/1, /CD2/1, /CD3/1 to access accordingly to
4111
    CD on IDE0 (Primary Master), IDE1 (Primary Slave),
4112
    IDE2 (Secondary Master), IDE3 (Secondary Slave)
546 diamond 4113
  * /SYS means system folder; with the usual boot (from floppy)
4114
    is equivalent to /RD/1
114 mikedld 4115
Examples:
4116
  * '/rd/1/kernel.asm',0
4117
  * '/HD0/1/kernel.asm',0
4118
  * '/hd0/2/menuet/pics/tanzania.bmp',0
4119
  * '/hd0/1/Program files/NameOfProgram/SomeFile.SomeExtension',0
546 diamond 4120
  * '/sys/MySuperApp.ini',0
118 diamond 4121
Available subfunctions:
114 mikedld 4122
  * subfunction 0 - read file
4123
  * subfunction 1 - read folder
4124
  * subfunction 2 - create/rewrite file
131 diamond 4125
  * subfunction 3 - write to existing file
133 diamond 4126
  * subfunction 4 - set file size
118 diamond 4127
  * subfunction 5 - get attributes of file/folder
4128
  * subfunction 6 - set attributes of file/folder
114 mikedld 4129
  * subfunction 7 - start application
193 diamond 4130
  * subfunction 8 - delete file/folder
321 diamond 4131
  * subfunction 9 - create folder
118 diamond 4132
For CD-drives due to hardware limitations only subfunctions
4133
0,1,5 and 7 are available, other subfunctions return error
4134
with code 2.
585 mario79 4135
At the first call subfunctions 0,1,5,7 to devices ATAPI (CD and DVD) the locking
4136
of handle mechanism of a tray is made. It is connected to algorithm of caching
588 diamond 4137
given obtained from a drive. Deblocking is made by call function 24.4
585 mario79 4138
to the appropriate device.
114 mikedld 4139
 
4140
======================================================================
118 diamond 4141
=== Function 70, subfunction 0 - read file with long names support. ==
114 mikedld 4142
======================================================================
4143
Parameters:
118 diamond 4144
  * eax = 70 - function number
4145
  * ebx = pointer to the information structure
4146
Format of the information structure:
4147
  * +0: dword: 0 = subfunction number
4148
  * +4: dword: file offset (in bytes)
4149
  * +8: dword: 0 (reserved for high dword of offset)
4150
  * +12 = +0xC: dword: number of bytes to read
4151
  * +16 = +0x10: dword: pointer to buffer for data
4152
  * +20 = +0x14: ASCIIZ-name of file, the rules of names forming are
4153
    given in the general description
114 mikedld 4154
    or
4155
  * +20 = +0x14: db 0
118 diamond 4156
  * +21 = +0x15: dd pointer to ASCIIZ-string with file name
114 mikedld 4157
Returned value:
118 diamond 4158
  * eax = 0 - success, otherwise file system error code
4159
  * ebx = number of read bytes or -1=0xffffffff if file was not found
114 mikedld 4160
Remarks:
118 diamond 4161
  * If file was ended before last requested block was read,
4162
    the function will read as many as it can, and after that return
4163
    eax=6 (EOF).
4164
  * The function does not allow to read folder (returns eax=10,
4165
    access denied).
114 mikedld 4166
 
118 diamond 4167
======================================================================
4168
== Function 70, subfunction 1 - read folder with long names support. =
4169
======================================================================
114 mikedld 4170
Parameters:
118 diamond 4171
  * eax = 70 - function number
4172
  * ebx = pointer to the information structure
4173
Format of the information structure:
4174
  * +0: dword: 1 = subfunction number
4175
  * +4: dword: index of starting block (beginning from 0)
4176
  * +8: dword: flags field:
114 mikedld 4177
    * bit 0 (mask 1): in what format to return names,
4178
      0=ANSI, 1=UNICODE
118 diamond 4179
    * other bits are reserved and must be set to 0 for the future
4180
      compatibility
4181
  * +12 = +0xC: dword: number of blocks to read
4182
  * +16 = +0x10: dword: pointer to buffer for data, buffer size
4183
    must be not less than 32 + [+12]*560 bytes
4184
  * +20 = +0x14: ASCIIZ-name of folder, the rules of names forming are
4185
    given in the general description
114 mikedld 4186
    or
4187
  * +20 = +0x14: db 0
118 diamond 4188
  * +21 = +0x15: dd pointer to ASCIIZ-string with file name
114 mikedld 4189
Returned value:
118 diamond 4190
  * eax = 0 - success, otherwise file system error code
4191
  * ebx = number of files, information on which was written to
4192
    the buffer, or -1=0xffffffff, if folder was not found
114 mikedld 4193
Structure of the buffer:
4194
  * +0: 32*byte: header
4195
  * +32 = +0x20: n1*byte: block with information on file 1
118 diamond 4196
  * +32+n1: n2*byte: block with information on file 2
114 mikedld 4197
  * ...
4198
Structure of header:
118 diamond 4199
  * +0: dword: version of structure (current is 1)
4200
  * +4: dword: number of placed blocks; is not greater than requested
4201
    in the field +12 of information structure; can be less, if
4202
    there are no more files in folder (the same as in ebx)
4203
  * +8: dword: total number of files in folder
4204
  * +12 = +0xC: 20*byte: reserved (zeroed)
4205
Structure of block of data for folder entry (BDFE):
4206
  * +0: dword: attributes of file:
4207
    * bit 0 (mask 1): file is read-only
4208
    * bit 1 (mask 2): file is hidden
4209
    * bit 2 (mask 4): file is system
4210
    * bit 3 (mask 8): this is not a file but volume label
4211
      (for one partition meets no more than once and
4212
      only in root folder)
4213
    * bit 4 (mask 0x10): this is a folder
4214
    * bit 5 (mask 0x20): file was not archived - many archivation
4215
      programs have an option to archive only files with this bit set,
4216
      and after archiving this bit is cleared - it can be useful
4217
      for automatically creating of backup-archives as at writing
4218
      this bit is usually set
4219
  * +4: byte: type of name data:
4220
    (coincides with bit 0 of flags in the information structure)
4221
    * 0 = ASCII = 1-byte representation of each character
4222
    * 1 = UNICODE = 2-byte representation of each character
114 mikedld 4223
  * +5: 3*byte: reserved (zero)
118 diamond 4224
  * +8: 4*byte: time of file creation
4225
  * +12 = +0xC: 4*byte: date of file creation
4226
  * +16 = +0x10: 4*byte: time of last access (read or write)
114 mikedld 4227
  * +20 = +0x14: 4*byte: date of last access
118 diamond 4228
  * +24 = +0x18: 4*byte: time of last modification
4229
  * +28 = +0x1C: 4*byte: date of last modification
4230
  * +32 = +0x20: qword: file size in bytes (up to 16777216 Tb)
114 mikedld 4231
  * +40 = +0x28: name
118 diamond 4232
    * for ASCII format: maximum length is 263 characters
4233
      (263 bytes), byte after the name has value 0
321 diamond 4234
    * for UNICODE format: maximum length is 259 characters
118 diamond 4235
      (518 bytes), 2 bytes after the name have value 0
4236
Time format:
114 mikedld 4237
  * +0: byte: seconds
4238
  * +1: byte: minutes
4239
  * +2: byte: hours
4240
  * +3: byte: reserved (0)
118 diamond 4241
  * for example, 23.59.59 is written as (in hex) 3B 3B 17 00
4242
Date format:
4243
  * +0: byte: day
4244
  * +1: byte: month
4245
  * +2: word: year
4246
  * for example, 25.11.1979 is written as (in hex) 19 0B BB 07
114 mikedld 4247
Remarks:
118 diamond 4248
  * If BDFE contains ASCII name, the length of BDFE is 304 bytes,
4249
    if UNICODE name - 560 bytes. Value of length is aligned
4250
    on 16-byte bound (to accelerate processing in CPU cache).
4251
  * First character after a name is zero (ASCIIZ-string). The further
4252
    data contain garbage.
4253
  * If files in folder were ended before requested number was read,
4254
    the function will read as many as it can, and after that return
4255
    eax=6 (EOF).
114 mikedld 4256
  * Any folder on the disk, except for root, contains two special
118 diamond 4257
    entries "." and "..", identifying accordingly the folder itself
4258
    and the parent folder.
4259
  * The function allows also to read virtual folders "/", "/rd",
4260
    "/fd", "/hd[n]", thus attributes of subfolders are set to 0x10,
4261
    and times and dates are zeroed. An alternative way to get the
4262
    equipment information - subfunction 11 of function 18.
114 mikedld 4263
 
4264
======================================================================
118 diamond 4265
===================== Function 70, subfunction 2 =====================
4266
============ Create/rewrite file with long names support. ============
114 mikedld 4267
======================================================================
4268
Parameters:
118 diamond 4269
  * eax = 70 - function number
4270
  * ebx = pointer to the information structure
4271
Format of the information structure:
4272
  * +0: dword: 2 = subfunction number
114 mikedld 4273
  * +4: dword: 0 (reserved)
4274
  * +8: dword: 0 (reserved)
118 diamond 4275
  * +12 = +0xC: dword: number of bytes to read
4276
  * +16 = +0x10: dword: pointer to data
4277
  * +20 = +0x14: ASCIIZ-name of file, the rules of names forming are
4278
    given in the general description
114 mikedld 4279
    or
4280
  * +20 = +0x14: db 0
118 diamond 4281
  * +21 = +0x15: dd pointer to ASCIIZ-string with file name
114 mikedld 4282
Returned value:
118 diamond 4283
  * eax = 0 - success, otherwise file system error code
4284
  * ebx = number of written bytes (possibly 0)
114 mikedld 4285
Remarks:
118 diamond 4286
  * If a file with given name did not exist, it is created;
4287
    if it existed, it is rewritten.
4288
  * If there is not enough free space on disk, the function will
4289
    write as many as can and then return error code 8.
4290
  * The function is not supported for CD (returns error code 2).
114 mikedld 4291
 
4292
======================================================================
131 diamond 4293
===================== Function 70, subfunction 3 =====================
4294
=========== Write to existing file with long names support. ==========
4295
======================================================================
4296
Parameters:
4297
  * eax = 70 - function number
4298
  * ebx = pointer to the information structure
4299
Format of the information structure:
4300
  * +0: dword: 3 = subfunction number
4301
  * +4: dword: file offset (in bytes)
4302
  * +8: dword: high dword of offset (must be 0 for FAT)
4303
  * +12 = +0xC: dword: number of bytes to write
4304
  * +16 = +0x10: dword: pointer to data
4305
  * +20 = +0x14: ASCIIZ-name of file, the rules of names forming are
4306
    given in the general description
4307
    or
4308
  * +20 = +0x14: db 0
4309
  * +21 = +0x15: dd pointer to ASCIIZ-string with file name
4310
Returned value:
4311
  * eax = 0 - success, otherwise file system error code
4312
  * ebx = number of written bytes (possibly 0)
4313
Remarks:
4314
  * The file must already exist, otherwise function returns eax=5.
4315
  * The only result of write 0 bytes is update in the file attributes
4316
    date/time of modification and access to the current date/time.
4317
  * If beginning and/or ending position is greater than file size
4318
    (except for the previous case), the file is expanded to needed
4319
    size with zero characters.
133 diamond 4320
  * The function is not supported for CD (returns error code 2).
131 diamond 4321
 
4322
======================================================================
133 diamond 4323
============ Function 70, subfunction 4 - set end of file. ===========
4324
======================================================================
4325
Parameters:
4326
  * eax = 70 - function number
4327
  * ebx = pointer to the information structure
4328
Format of the information structure:
4329
  * +0: dword: 4 = subfunction number
4330
  * +4: dword: low dword of new file size
4331
  * +8: dword: high dword of new file size (must be 0 for FAT)
4332
  * +12 = +0xC: dword: 0 (reserved)
4333
  * +16 = +0x10: dword: 0 (reserved)
4334
  * +20 = +0x14: ASCIIZ-name of file, the rules of names forming are
4335
    given in the general description
4336
    or
4337
  * +20 = +0x14: db 0
4338
  * +21 = +0x15: dd pointer to ASCIIZ-string with file name
4339
Returned value:
4340
  * eax = 0 - success, otherwise file system error code
4341
  * ebx destroyed
4342
Remarks:
4343
  * If the new file size is less than old one, file is truncated.
4344
    If the new size is greater than old one, file is expanded with
4345
    characters with code 0. If the new size is equal to old one,
4346
    the only result of call is set date/time of modification and
4347
    access to the current date/time.
4348
  * If there is not enough free space on disk for expansion, the
4349
    function will expand to maximum possible size and then return
4350
    error code 8.
4351
  * The function is not supported for CD (returns error code 2).
4352
 
4353
======================================================================
118 diamond 4354
==== Function 70, subfunction 5 - get information on file/folder. ====
114 mikedld 4355
======================================================================
4356
Parameters:
118 diamond 4357
  * eax = 70 - function number
4358
  * ebx = pointer to the information structure
4359
Format of the information structure:
4360
  * +0: dword: 5 = subfunction number
114 mikedld 4361
  * +4: dword: 0 (reserved)
4362
  * +8: dword: 0 (reserved)
4363
  * +12 = +0xC: dword: 0 (reserved)
118 diamond 4364
  * +16 = +0x10: dword: pointer to buffer for data (40 bytes)
4365
  * +20 = +0x14: ASCIIZ-name of file, the rules of names forming are
4366
    given in the general description
114 mikedld 4367
    or
4368
  * +20 = +0x14: db 0
118 diamond 4369
  * +21 = +0x15: dd pointer to ASCIIZ-string with file name
114 mikedld 4370
Returned value:
118 diamond 4371
  * eax = 0 - success, otherwise file system error code
4372
  * ebx destroyed
4373
Information on file is returned in the BDFE format (block of data
4374
for folder entry), explained in the description of
4375
subfunction 1, but without filename
4376
(i.e. only first 40 = 0x28 bytes).
114 mikedld 4377
Remarks:
118 diamond 4378
  * The function does not support virtual folders such as /, /rd and
4379
    root folders like /rd/1.
114 mikedld 4380
 
4381
======================================================================
118 diamond 4382
===== Function 70, subfunction 6 - set attributes of file/folder. ====
114 mikedld 4383
======================================================================
4384
Parameters:
118 diamond 4385
  * eax = 70 - function number
4386
  * ebx = pointer to the information structure
4387
Format of the information structure:
4388
  * +0: dword: 6 = subfunction number
114 mikedld 4389
  * +4: dword: 0 (reserved)
4390
  * +8: dword: 0 (reserved)
4391
  * +12 = +0xC: dword: 0 (reserved)
118 diamond 4392
  * +16 = +0x10: dword: pointer to buffer with attributes (32 bytes)
4393
  * +20 = +0x14: ASCIIZ-name of file, the rules of names forming are
4394
    given in the general description
114 mikedld 4395
    or
4396
  * +20 = +0x14: db 0
118 diamond 4397
  * +21 = +0x15: dd pointer to ASCIIZ-string with file name
114 mikedld 4398
Returned value:
118 diamond 4399
  * eax = 0 - success, otherwise file system error code
4400
  * ebx destroyed
4401
File attributes are first 32 bytes in BDFE (block of data
4402
for folder entry), explained in the description of subfunction 1
4403
(that is, without name and size of file). Attribute
4404
file/folder/volume label (bits 3,4 in dword +0) is not changed.
4405
Byte +4 (name format) is ignored.
114 mikedld 4406
Remarks:
118 diamond 4407
  * The function does not support virtual folders such as /, /rd and
4408
    root folders like /rd/1.
4409
  * The function is not supported for CD (returns error code 2).
114 mikedld 4410
 
4411
======================================================================
118 diamond 4412
=========== Function 70, subfunction 7 - start application. ==========
114 mikedld 4413
======================================================================
4414
Parameters:
118 diamond 4415
  * eax = 70 - function number
4416
  * ebx = pointer to the information structure
4417
Format of the information structure:
4418
  * +0: dword: 7 = subfunction number
4419
  * +4: dword: flags field:
4420
    * бит 0: start process as debugged
4421
    * other bits are reserved and must be set to 0
4422
  * +8: dword: 0 or pointer to ASCIIZ-string with parameters
114 mikedld 4423
  * +12 = +0xC: dword: 0 (reserved)
4424
  * +16 = +0x10: dword: 0 (reserved)
118 diamond 4425
  * +20 = +0x14: ASCIIZ-name of file, the rules of names forming are
4426
    given in the general description
114 mikedld 4427
    or
4428
  * +20 = +0x14: db 0
118 diamond 4429
  * +21 = +0x15: dd pointer to ASCIIZ-string with file name
114 mikedld 4430
Returned value:
4431
  * eax > 0 - program is loaded, eax contains PID
118 diamond 4432
  * eax < 0 - an error has occured, -eax contains
4433
    file system error code
4434
  * ebx destroyed
114 mikedld 4435
Remarks:
118 diamond 4436
  * Command line must be terminated by the character with the code 0
4437
    (ASCIIZ-string); function takes into account either all characters
4438
    up to terminating zero inclusively or first 256 character
4439
    regarding what is less.
4440
  * If the process is started as debugged, it is created in
4441
    the suspended state; to run use subfunction 5 of function 69.
114 mikedld 4442
 
4443
======================================================================
193 diamond 4444
========== Function 70, subfunction 8 - delete file/folder. ==========
4445
======================================================================
4446
Parameters:
4447
  * eax = 70 - function number
4448
  * ebx = pointer to the information structure
4449
Format of the information structure:
4450
  * +0: dword: 8 = subfunction number
4451
  * +4: dword: 0 (reserved)
4452
  * +8: dword: 0 (reserved)
4453
  * +12 = +0xC: dword: 0 (reserved)
4454
  * +16 = +0x10: dword: 0 (reserved)
4455
  * +20 = +0x14: ASCIIZ-name of file, the rules of names forming are
4456
    given in the general description
4457
    or
4458
  * +20 = +0x14: db 0
4459
  * +21 = +0x15: dd pointer to ASCIIZ-string with file name
4460
Returned value:
4461
  * eax = 0 - success, otherwise file system error code
4462
  * ebx destroyed
4463
Remarks:
4464
  * The function is not supported for CD (returns error code 2).
4465
  * The function can delete only empty folders (attempt to delete
4466
    nonempty folder results in error with code 10, "access denied").
4467
 
4468
======================================================================
321 diamond 4469
============= Function 70, subfunction 9 - create folder. ============
4470
======================================================================
4471
Parameters:
4472
  * eax = 70 - function number
4473
  * ebx = pointer to the information structure
4474
Format of the information structure:
4475
  * +0: dword: 9 = subfunction number
4476
  * +4: dword: 0 (reserved)
4477
  * +8: dword: 0 (reserved)
4478
  * +12 = +0xC: dword: 0 (reserved)
4479
  * +16 = +0x10: dword: 0 (reserved)
4480
  * +20 = +0x14: ASCIIZ-name of folder, the rules of names forming are
4481
    given in the general description
4482
    or
4483
  * +20 = +0x14: db 0
4484
  * +21 = +0x15: dd pointer to ASCIIZ-string with folder name
4485
Returned value:
4486
  * eax = 0 - success, otherwise file system error code
4487
  * ebx destroyed
4488
Remarks:
4489
  * The function is not supported for CD (returns error code 2).
4490
  * The parent folder must already exist.
4491
  * If target folder already exists, function returns success (eax=0).
4492
 
4493
======================================================================
118 diamond 4494
========== Function 71, subfunction 1 - set window caption. ==========
114 mikedld 4495
======================================================================
4496
Parameters:
4497
  * eax = 71 - function number
4498
  * ebx = 1 - subfunction number
118 diamond 4499
  * ecx = pointer to caption string
114 mikedld 4500
Returned value:
118 diamond 4501
  * function does not return value
114 mikedld 4502
Remarks:
118 diamond 4503
  * String must be in the ASCIIZ-format. Disregarding real string
4504
    length, no more than 255 characters are drawn.
4505
  * Pass NULL in ecx to remove caption.
114 mikedld 4506
 
4507
======================================================================
118 diamond 4508
=============== Function -1 - terminate thread/process ===============
114 mikedld 4509
======================================================================
4510
Parameters:
118 diamond 4511
  * eax = -1 - function number
114 mikedld 4512
Returned value:
118 diamond 4513
  * function does not return neither value nor control
114 mikedld 4514
Remarks:
118 diamond 4515
  * If the process did not create threads obviously, it has only
4516
    one thread, which termination results in process termination.
4517
  * If the current thread is last in the process, its termination
4518
    also results in process terminates.
4519
  * This function terminates the current thread. Other thread can be
4520
    killed by call to subfunction 2 of function 18.
114 mikedld 4521
 
4522
======================================================================
4523
=========================== List of events ===========================
4524
======================================================================
118 diamond 4525
Next event can be retrieved by the call of one from functions 10
4526
(to wait for event), 11 (to check without waiting), 23
4527
(to wait during the given time).
4528
These functions return only those events, which enter into a mask set
4529
by function 40. By default it is first three,
4530
there is enough for most applications.
114 mikedld 4531
Codes of events:
118 diamond 4532
  * 1 = redraw event (is reset by call to function 0)
4533
  * 2 = key on keyboard is pressed (acts, only when the window is
4534
    active) or hotkey is pressed; is reset, when all keys from
4535
    the buffer are read out by function 2
4536
  * 3 = button is pressed, defined earlier by function 8
4537
    (or close button, created implicitly by function 0;
4538
    minimize button is handled by the system and sends no message;
4539
    acts, only when the window is active;
4540
    is reset when all buttons from the buffer
4541
    are read out by function 17)
4542
  * 4 = reserved (in current implementation never comes even after
4543
    unmasking by function 40)
4544
  * 5 = the desktop background is redrawed (is reset automatically
4545
    after redraw, so if in redraw time program does not wait and
4546
    does not check events, it will not remark this event)
4547
  * 6 = mouse event (something happened - button pressing or moving;
4548
    is reset at reading)
4549
  * 7 = IPC event (see function 60 -
4550
    Inter Process Communication; is reset at reading)
4551
  * 8 = network event (is reset at reading)
4552
  * 9 = debug event (is reset at reading; see
4553
    debug subsystem)
4554
  * 16..31 = event with appropriate IRQ
4555
    (16=IRQ0, 31=IRQ15) (is reset after reading all IRQ data)
114 mikedld 4556
 
4557
======================================================================
118 diamond 4558
=================== Error codes of the file system ===================
114 mikedld 4559
======================================================================
118 diamond 4560
  * 0 = success
4561
  * 1 = base and/or partition of a hard disk is not defined
4562
    (by subfunctions 7, 8 of function 21)
4563
  * 2 = function is not supported for the given file system
4564
  * 3 = unknown file system
448 diamond 4565
  * 4 = reserved, is never returned in the current implementation
118 diamond 4566
  * 5 = file not found
4567
  * 6 = end of file, EOF
4568
  * 7 = pointer lies outside of application memory
4569
  * 8 = disk is full
4570
  * 9 = FAT table is destroyed
114 mikedld 4571
  * 10 = access denied
118 diamond 4572
  * 11 = device error
4573
Application start functions can return also following errors:
4574
  * 30 = 0x1E = not enough memory
4575
  * 31 = 0x1F = file is not executable
4576
  * 32 = 0x20 = too many processes