Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
2288 clevermous 1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2
;;                                                              ;;
2455 mario79 3
;; Copyright (C) KolibriOS team 2004-2012. All rights reserved. ;;
2288 clevermous 4
;; Distributed under terms of the GNU General Public License    ;;
5
;;                                                              ;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7
 
8
$Revision: 2480 $
9
 
10
 
11
dpl0    equ  10010000b     ; data read       dpl0
12
drw0    equ  10010010b      ; data read/write dpl0
13
drw3    equ  11110010b      ; data read/write dpl3
14
cpl0    equ  10011010b      ; code read dpl0
15
cpl3    equ  11111010b      ; code read dpl3
16
 
17
D32     equ  01000000b      ; 32bit segment
18
G32     equ  10000000b      ; page gran
19
 
20
 
21
;;;;;;;;;;;;cpu_caps flags;;;;;;;;;;;;;;;;
22
 
23
CPU_386        equ 3
24
CPU_486        equ 4
25
CPU_PENTIUM    equ 5
26
CPU_P6         equ 6
27
CPU_PENTIUM4   equ 0x0F
28
 
29
CAPS_FPU       equ    00 ;on-chip x87 floating point unit
30
CAPS_VME       equ    01 ;virtual-mode enhancements
31
CAPS_DE        equ    02 ;debugging extensions
32
CAPS_PSE       equ    03 ;page-size extensions
33
CAPS_TSC       equ    04 ;time stamp counter
34
CAPS_MSR       equ    05 ;model-specific registers
35
CAPS_PAE       equ    06 ;physical-address extensions
36
CAPS_MCE       equ    07 ;machine check exception
37
CAPS_CX8       equ    08 ;CMPXCHG8B instruction
38
CAPS_APIC      equ    09 ;on-chip advanced programmable
39
                         ; interrupt controller
40
;                     10 ;unused
41
CAPS_SEP       equ    11 ;SYSENTER and SYSEXIT instructions
42
CAPS_MTRR      equ    12 ;memory-type range registers
43
CAPS_PGE       equ    13 ;page global extension
44
CAPS_MCA       equ    14 ;machine check architecture
45
CAPS_CMOV      equ    15 ;conditional move instructions
46
CAPS_PAT       equ    16 ;page attribute table
47
 
48
CAPS_PSE36     equ    17 ;page-size extensions
49
CAPS_PSN       equ    18 ;processor serial number
50
CAPS_CLFLUSH   equ    19 ;CLFUSH instruction
51
 
52
CAPS_DS        equ    21 ;debug store
53
CAPS_ACPI      equ    22 ;thermal monitor and software
54
                         ;controlled clock supported
55
CAPS_MMX       equ    23 ;MMX instructions
56
CAPS_FXSR      equ    24 ;FXSAVE and FXRSTOR instructions
57
CAPS_SSE       equ    25 ;SSE instructions
58
CAPS_SSE2      equ    26 ;SSE2 instructions
59
CAPS_SS        equ    27 ;self-snoop
60
CAPS_HTT       equ    28 ;hyper-threading technology
61
CAPS_TM        equ    29 ;thermal monitor supported
62
CAPS_IA64      equ    30 ;IA64 capabilities
63
CAPS_PBE       equ    31 ;pending break enable
64
 
65
;ecx
66
CAPS_SSE3      equ    32 ;SSE3 instructions
67
;                     33
68
;                     34
69
CAPS_MONITOR   equ    35 ;MONITOR/MWAIT instructions
70
CAPS_DS_CPL    equ    36 ;
71
CAPS_VMX       equ    37 ;virtual mode extensions
72
;                     38 ;
73
CAPS_EST       equ    39 ;enhansed speed step
74
CAPS_TM2       equ    40 ;thermal monitor2 supported
75
;                     41
76
CAPS_CID       equ    42 ;
77
;                     43
78
;                     44
79
CAPS_CX16      equ    45 ;CMPXCHG16B instruction
80
CAPS_xTPR      equ    46 ;
81
;
82
;reserved
83
;
84
;ext edx /ecx
85
CAPS_SYSCAL    equ    64 ;
86
CAPS_XD        equ    65 ;execution disable
87
CAPS_FFXSR     equ    66 ;
88
CAPS_RDTSCP    equ    67 ;
89
CAPS_X64       equ    68 ;
90
CAPS_3DNOW     equ    69 ;
91
CAPS_3DNOWEXT  equ    70 ;
92
CAPS_LAHF      equ    71 ;
93
CAPS_CMP_LEG   equ    72 ;
94
CAPS_SVM       equ    73 ;secure virual machine
95
CAPS_ALTMOVCR8 equ    74 ;
96
 
97
; CPU MSR names
98
MSR_SYSENTER_CS         equ     0x174
99
MSR_SYSENTER_ESP        equ     0x175
100
MSR_SYSENTER_EIP        equ     0x176
101
MSR_AMD_EFER            equ     0xC0000080      ; Extended Feature Enable Register
102
MSR_AMD_STAR            equ     0xC0000081      ; SYSCALL/SYSRET Target Address Register
103
 
104
CR0_PE         equ    0x00000001   ;protected mode
105
CR0_MP         equ    0x00000002   ;monitor fpu
106
CR0_EM         equ    0x00000004   ;fpu emulation
107
CR0_TS         equ    0x00000008   ;task switch
108
CR0_ET         equ    0x00000010   ;extension type hardcoded to 1
109
CR0_NE         equ    0x00000020   ;numeric error
110
CR0_WP         equ    0x00010000   ;write protect
111
CR0_AM         equ    0x00040000   ;alignment check
112
CR0_NW         equ    0x20000000   ;not write-through
113
CR0_CD         equ    0x40000000   ;cache disable
114
CR0_PG         equ    0x80000000   ;paging
115
 
116
 
117
CR4_VME        equ    0x0001
118
CR4_PVI        equ    0x0002
119
CR4_TSD        equ    0x0004
120
CR4_DE         equ    0x0008
121
CR4_PSE        equ    0x0010
122
CR4_PAE        equ    0x0020
123
CR4_MCE        equ    0x0040
124
CR4_PGE        equ    0x0080
125
CR4_PCE        equ    0x0100
126
CR4_OSFXSR     equ    0x0200
127
CR4_OSXMMEXPT  equ    0x0400
128
 
129
SSE_IE         equ    0x0001
130
SSE_DE         equ    0x0002
131
SSE_ZE         equ    0x0004
132
SSE_OE         equ    0x0008
133
SSE_UE         equ    0x0010
134
SSE_PE         equ    0x0020
135
SSE_DAZ        equ    0x0040
136
SSE_IM         equ    0x0080
137
SSE_DM         equ    0x0100
138
SSE_ZM         equ    0x0200
139
SSE_OM         equ    0x0400
140
SSE_UM         equ    0x0800
141
SSE_PM         equ    0x1000
142
SSE_FZ         equ    0x8000
143
 
144
SSE_INIT equ (SSE_IM+SSE_DM+SSE_ZM+SSE_OM+SSE_UM+SSE_PM)
145
 
146
IRQ_PIC        equ    0
147
IRQ_APIC       equ    1
148
 
2381 hidnplayr 149
struct  TSS
150
        _back       rw 2
151
        _esp0       rd 1
152
        _ss0        rw 2
153
        _esp1       rd 1
154
        _ss1        rw 2
155
        _esp2       rd 1
156
        _ss2        rw 2
157
        _cr3        rd 1
158
        _eip        rd 1
159
        _eflags     rd 1
160
        _eax        rd 1
161
        _ecx        rd 1
162
        _edx        rd 1
163
        _ebx        rd 1
164
        _esp        rd 1
165
        _ebp        rd 1
166
        _esi        rd 1
167
        _edi        rd 1
168
        _es         rw 2
169
        _cs         rw 2
170
        _ss         rw 2
171
        _ds         rw 2
172
        _fs         rw 2
173
        _gs         rw 2
174
        _ldt        rw 2
175
        _trap       rw 1
176
        _io         rw 1
177
                    rb 24
178
        _io_map_0   rb 4096
179
        _io_map_1   rb 4096
180
ends
2288 clevermous 181
 
182
OS_BASE             equ 0x80000000
183
 
184
window_data         equ (OS_BASE+0x0001000)
185
 
186
CURRENT_TASK        equ (OS_BASE+0x0003000)
187
TASK_COUNT          equ (OS_BASE+0x0003004)
188
TASK_BASE           equ (OS_BASE+0x0003010)
189
TASK_DATA           equ (OS_BASE+0x0003020)
190
TASK_EVENT          equ (OS_BASE+0x0003020)
191
 
2438 mario79 192
d_width_calc_area   equ (OS_BASE+0x0005000)
2480 mario79 193
BPSLine_calc_area   equ (OS_BASE+0x0339000)
194
 
2288 clevermous 195
mouseunder          equ (OS_BASE+0x0006900)
196
CDDataBuf           equ (OS_BASE+0x0007000)
197
FLOPPY_BUFF         equ (OS_BASE+0x0008000)
198
ACTIVE_PROC_STACK   equ (OS_BASE+0x000A400) ;unused
199
idts                equ (OS_BASE+0x000B100)
200
WIN_STACK           equ (OS_BASE+0x000C000)
201
WIN_POS             equ (OS_BASE+0x000C400)
202
FDD_BUFF            equ (OS_BASE+0x000D000)
203
 
204
;unused ? only one reference
205
ENABLE_TASKSWITCH   equ (OS_BASE+0x000E000)
206
 
207
PUTPIXEL            equ (OS_BASE+0x000E020)
208
GETPIXEL            equ (OS_BASE+0x000E024)
209
 
210
;unused ? only one reference
211
BANK_SWITCH         equ (OS_BASE+0x000E030)
212
 
213
;unused ? store mousepointer
214
MOUSE_PICTURE       equ (OS_BASE+0x000F200)
215
 
2430 mario79 216
;MOUSE_VISIBLE       equ (OS_BASE+0x000F204)
2288 clevermous 217
WIN_TEMP_XY         equ (OS_BASE+0x000F300)
218
KEY_COUNT           equ (OS_BASE+0x000F400)
219
KEY_BUFF            equ (OS_BASE+0x000F401)
220
 
221
BTN_COUNT           equ (OS_BASE+0x000F500)
222
BTN_BUFF            equ (OS_BASE+0x000F501)
223
 
224
CPU_FREQ            equ (OS_BASE+0x000F600)
225
 
226
;unused ? no active references
227
MOUSE_PORT          equ (OS_BASE+0x000F604)
228
 
229
;unused
230
PS2_CHUNK           equ (OS_BASE+0x000FB00)
231
 
232
MOUSE_SCROLL_H      equ (OS_BASE+0x000FB08)
233
MOUSE_X             equ (OS_BASE+0x000FB0A)
234
MOUSE_Y             equ (OS_BASE+0x000FB0C)
235
MOUSE_SCROLL_V      equ (OS_BASE+0x000FB0E)
236
 
237
MOUSE_COLOR_MEM     equ (OS_BASE+0x000FB10)
238
COLOR_TEMP          equ (OS_BASE+0x000FB30)
239
BTN_DOWN            equ (OS_BASE+0x000FB40)
240
MOUSE_DOWN          equ (OS_BASE+0x000FB44)
241
X_UNDER             equ (OS_BASE+0x000FB4A)
242
Y_UNDER             equ (OS_BASE+0x000FB4C)
243
ScreenBPP           equ (OS_BASE+0x000FBF1)
244
 
245
;unused ? only one reference
246
MOUSE_BUFF_COUNT    equ (OS_BASE+0x000FCFF)
247
 
248
Screen_Max_X        equ (OS_BASE+0x000FE00)
249
Screen_Max_Y        equ (OS_BASE+0x000FE04)
250
BytesPerScanLine    equ (OS_BASE+0x000FE08)
251
SCR_MODE            equ (OS_BASE+0x000FE0C)
252
 
253
LFBAddress          equ (OS_BASE+0x000FE80)
254
BTN_ADDR            equ (OS_BASE+0x000FE88)
255
MEM_AMOUNT          equ (OS_BASE+0x000FE8C)
256
 
257
SYS_SHUTDOWN        equ (OS_BASE+0x000FF00)
258
TASK_ACTIVATE       equ (OS_BASE+0x000FF01)
259
 
260
REDRAW_BACKGROUND   equ (OS_BASE+0x000FFF0)
261
BACKGROUND_CHANGED  equ (OS_BASE+0x000FFF1)
262
BANK_RW             equ (OS_BASE+0x000FFF2)
263
MOUSE_BACKGROUND    equ (OS_BASE+0x000FFF4)
264
DONT_DRAW_MOUSE     equ (OS_BASE+0x000FFF5)
265
DONT_SWITCH         equ (OS_BASE+0x000FFFF)
266
 
267
TMP_STACK_TOP       equ 0x006CC00
268
 
269
FONT_II             equ (OS_BASE+0x006DC00)
270
FONT_I              equ (OS_BASE+0x006E600)
271
 
272
sys_pgdir           equ (OS_BASE+0x006F000)
273
 
274
DRIVE_DATA          equ (OS_BASE+0x0070000)
275
 
276
SLOT_BASE           equ (OS_BASE+0x0080000)
277
 
278
;unused
279
TMP_BUFF            equ (OS_BASE+0x0090000)
280
 
281
VGABasePtr          equ (OS_BASE+0x00A0000)
282
 
283
RAMDISK             equ (OS_BASE+0x0100000)
284
RAMDISK_FAT         equ (OS_BASE+0x0280000)
285
FLOPPY_FAT          equ (OS_BASE+0x0282000)
286
 
287
CLEAN_ZONE          equ 0x284000
288
IDE_DMA             equ 0x284000
289
 
290
BgrAuxTable         equ (OS_BASE+0x0298000)
291
; unused?
292
SB16Buffer          equ (OS_BASE+0x02A0000)
293
SB16_Status         equ (OS_BASE+0x02B0000)
294
 
295
BUTTON_INFO         equ (OS_BASE+0x02C0000)
296
RESERVED_PORTS      equ (OS_BASE+0x02D0000)
297
BOOT_VAR            equ (OS_BASE+0x02E0000)
298
 
299
stack_data_start    equ (OS_BASE+0x02F0000)
300
eth_data_start      equ (OS_BASE+0x02F0000)
301
stack_data          equ (OS_BASE+0x02F4000)
302
stack_data_end      equ (OS_BASE+0x030ffff)
303
resendQ             equ (OS_BASE+0x0310000)
304
 
305
skin_data           equ (OS_BASE+0x0318000)
306
draw_data           equ (OS_BASE+0x0320000)
307
 
308
BgrDrawMode         equ (OS_BASE+0x0323FF4)
309
BgrDataWidth        equ (OS_BASE+0x0323FF8)
310
BgrDataHeight       equ (OS_BASE+0x0323FFC)
311
 
312
sys_pgmap           equ (OS_BASE+0x0324000)
313
 
314
UPPER_KERNEL_PAGES  equ (OS_BASE+0x0400000)
315
 
316
virtual at              (OS_BASE+0x05FFF80)
317
  tss  TSS
318
end virtual
319
 
320
HEAP_BASE           equ (OS_BASE+0x0800000)
321
HEAP_MIN_SIZE       equ 0x01000000
322
 
323
page_tabs           equ 0xFDC00000
324
app_page_tabs       equ 0xFDC00000
325
kernel_tabs         equ (page_tabs+ (OS_BASE shr 10))   ;0xFDE00000
326
master_tab          equ (page_tabs+ (page_tabs shr 10)) ;0xFDFF70000
327
 
328
LFB_BASE            equ 0xFE000000
329
 
330
 
331
new_app_base        equ 0;
332
 
333
twdw                equ 0x2000   ;(CURRENT_TASK-window_data)
334
 
335
std_application_base_address   equ new_app_base
336
RING0_STACK_SIZE    equ (0x2000 - 512)    ;512 áàéò äëÿ êîíòåêñòà FPU
337
 
338
REG_SS              equ (RING0_STACK_SIZE-4)
339
REG_APP_ESP         equ (RING0_STACK_SIZE-8)
340
REG_EFLAGS          equ (RING0_STACK_SIZE-12)
341
REG_CS              equ (RING0_STACK_SIZE-16)
342
REG_EIP             equ (RING0_STACK_SIZE-20)
343
REG_EAX             equ (RING0_STACK_SIZE-24)
344
REG_ECX             equ (RING0_STACK_SIZE-28)
345
REG_EDX             equ (RING0_STACK_SIZE-32)
346
REG_EBX             equ (RING0_STACK_SIZE-36)
347
REG_ESP             equ (RING0_STACK_SIZE-40)  ;RING0_STACK_SIZE-20
348
REG_EBP             equ (RING0_STACK_SIZE-44)
349
REG_ESI             equ (RING0_STACK_SIZE-48)
350
REG_EDI             equ (RING0_STACK_SIZE-52)
351
REG_RET             equ (RING0_STACK_SIZE-56)  ;irq0.return
352
 
353
 
354
PG_UNMAP            equ 0x000
355
PG_MAP              equ 0x001
356
PG_WRITE            equ 0x002
357
PG_SW               equ 0x003
358
PG_USER             equ 0x005
359
PG_UW               equ 0x007
360
PG_NOCACHE          equ 0x018
361
PG_LARGE            equ 0x080
362
PG_GLOBAL           equ 0x100
363
 
364
PG_SHARED           equ 0x200
365
 
366
;;;;;;;;;;;boot time variables
367
 
2466 Serge 368
BOOT_BPP            equ 0x9000    ;byte   bits per pixel
369
BOOT_PITCH          equ 0x9001    ;word   scanline length
2288 clevermous 370
BOOT_VESA_MODE      equ 0x9008    ;word   vesa video mode
2466 Serge 371
BOOT_X_RES          equ 0x900A    ;word   X res
372
BOOT_Y_RES          equ 0x900C    ;word   Y res
2288 clevermous 373
;;BOOT_MOUSE_PORT     equ 0x9010    ;byte   mouse port  - not used
374
BOOT_BANK_SW        equ 0x9014    ;dword  Vesa 1.2 pm bank switch
375
BOOT_LFB            equ 0x9018    ;dword  Vesa 2.0 LFB address
376
BOOT_MTRR           equ 0x901C    ;byte   0 or 1 : enable MTRR graphics acceleration
377
BOOT_LOG            equ 0x901D    ;byte   not used anymore (0 or 1 : enable system log display)
2466 Serge 378
;BOOT_DIRECT_LFB     equ 0x901E    ;byte   0 or 1 : enable direct lfb write, paging disabled
379
BOOT_DMA            equ 0x901F    ;
2288 clevermous 380
BOOT_PCI_DATA       equ 0x9020    ;8bytes pci data
381
BOOT_VRR            equ 0x9030    ;byte   VRR start enabled 1, 2-no
382
BOOT_IDE_BASE_ADDR  equ 0x9031   ;word   IDEContrRegsBaseAddr
383
BOOT_MEM_AMOUNT     equ 0x9034    ;dword  memory amount
384
 
2466 Serge 385
BOOT_APM_ENTRY      equ 0x9040
386
BOOT_APM_VERSION    equ 0x9044
387
BOOT_APM_FLAGS      equ 0x9046    ;unused
388
BOOT_APM_CODE_32    equ 0x9050
389
BOOT_APM_CODE_16    equ 0x9052
390
BOOT_APM_DATA_16    equ 0x9054
391
 
2288 clevermous 392
TMP_FILE_NAME       equ     0
393
TMP_CMD_LINE        equ  1024
394
TMP_ICON_OFFS       equ  1280
395
 
396
 
397
EVENT_REDRAW       equ 0x00000001
398
EVENT_KEY          equ 0x00000002
399
EVENT_BUTTON       equ 0x00000004
400
EVENT_BACKGROUND   equ 0x00000010
401
EVENT_MOUSE        equ 0x00000020
402
EVENT_IPC          equ 0x00000040
403
EVENT_NETWORK      equ 0x00000080
404
EVENT_DEBUG        equ 0x00000100
405
EVENT_EXTENDED     equ 0x00000200
406
 
407
EV_INTR            equ 1
408
 
2384 hidnplayr 409
struct  THR_DATA
410
                        rb (8192-512)
411
;       pl0_stack
412
        fpu_state       rb 512
413
        tls_page        rb 4096
414
        pdbr            rb 4096
415
ends
2288 clevermous 416
 
2384 hidnplayr 417
virtual at (OS_BASE-sizeof.THR_DATA)
2288 clevermous 418
  thr_data  THR_DATA
419
end virtual
420
 
2384 hidnplayr 421
struct  SYS_VARS
422
        bpp             dd ?
423
        scanline        dd ?
424
        vesa_mode       dd ?
425
        x_res           dd ?
426
        y_res           dd ?
427
ends
2288 clevermous 428
 
2384 hidnplayr 429
struct  APPOBJ                  ; common object header
430
        magic           dd ?    ;
431
        destroy         dd ?    ; internal destructor
432
        fd              dd ?    ; next object in list
433
        bk              dd ?    ; prev object in list
434
        pid             dd ?    ; owner id
435
ends
2288 clevermous 436
 
437
APP_OBJ_OFFSET  equ 48
438
APP_EV_OFFSET   equ 40
439
 
2384 hidnplayr 440
struct  CURSOR          APPOBJ
441
        base            dd ?   ;allocated memory
442
        hot_x           dd ?   ;hotspot coords
443
        hot_y           dd ?
2288 clevermous 444
 
2384 hidnplayr 445
        list_next       dd ?   ;next cursor in cursor list
446
        list_prev       dd ?   ;prev cursor in cursor list
447
        dev_obj         dd ?   ;device depended data
448
ends
2288 clevermous 449
 
450
 
2384 hidnplayr 451
struct  EVENT           APPOBJ
452
        id              dd ?   ;event uid
453
        state           dd ?   ;internal flags
454
        code            dd ?
455
                        rd 5
456
ends
2288 clevermous 457
 
458
 
2384 hidnplayr 459
struct  SMEM
460
        bk              dd ?
461
        fd              dd ?    ;+4
462
        base            dd ?    ;+8
463
        size            dd ?    ;+12
464
        access          dd ?    ;+16
465
        refcount        dd ?    ;+20
466
        name            rb 32   ;+24
467
ends
2288 clevermous 468
 
2384 hidnplayr 469
struct  SMAP            APPOBJ
470
        base            dd ?   ;mapped base
471
        parent          dd ?   ;SMEM
472
ends
2288 clevermous 473
 
2384 hidnplayr 474
struct  DLLDESCR
475
        bk              dd ?
476
        fd              dd ?    ;+4
477
        data            dd ?    ;+8
478
        size            dd ?    ;+12
479
        timestamp       dq ?
480
        refcount        dd ?
481
        defaultbase     dd ?
482
        coff_hdr        dd ?
483
        symbols_ptr     dd ?
484
        symbols_num     dd ?
485
        symbols_lim     dd ?
486
        exports         dd ?   ;export table
487
        name            rb 260
488
ends
2288 clevermous 489
 
2384 hidnplayr 490
struct  HDLL
491
        fd              dd ?   ;next object in list
492
        bk              dd ?   ;prev object in list
493
        pid             dd ?   ;owner id
2288 clevermous 494
 
2384 hidnplayr 495
        base            dd ?   ;mapped base
496
        size            dd ?   ;mapped size
497
        refcount        dd ?   ;reference counter for this process and this lib
498
        parent          dd ?   ;DLLDESCR
499
ends
2288 clevermous 500
 
2384 hidnplayr 501
struct  display_t
502
        x               dd ?
503
        y               dd ?
504
        width           dd ?
505
        height          dd ?
506
        bpp             dd ?
507
        vrefresh        dd ?
508
        pitch           dd ?
509
        lfb             dd ?
2288 clevermous 510
 
2384 hidnplayr 511
        modes           dd ?
512
        ddev            dd ?
513
        connector       dd ?
514
        crtc            dd ?
2288 clevermous 515
 
2384 hidnplayr 516
        cr_list.next    dd ?
517
        cr_list.prev    dd ?
2288 clevermous 518
 
2384 hidnplayr 519
        cursor          dd ?
2288 clevermous 520
 
2384 hidnplayr 521
        init_cursor     dd ?
522
        select_cursor   dd ?
523
        show_cursor     dd ?
524
        move_cursor     dd ?
525
        restore_cursor  dd ?
2445 Serge 526
        disable_mouse   dd ?
2414 Serge 527
        mask_seqno      dd ?
2430 mario79 528
        check_mouse     dd ?
529
        check_m_pixel   dd ?
2384 hidnplayr 530
ends
2288 clevermous 531
 
2384 hidnplayr 532
struct  BOOT_DATA
533
        bpp             dd ?
534
        scanline        dd ?
535
        vesa_mode       dd ?
536
        x_res           dd ?
537
        y_res           dd ?
538
        mouse_port      dd ?
539
        bank_switch     dd ?
540
        lfb             dd ?
541
        vesa_mem        dd ?
542
        log             dd ?
543
        direct_lfb      dd ?
544
        pci_data        dd ?
545
                        dd ?
546
        vrr             dd ?
547
        ide_base        dd ?
548
        mem_amount      dd ?
549
        pages_count     dd ?
550
        pagemap_size    dd ?
551
        kernel_max      dd ?
552
        kernel_pages    dd ?
553
        kernel_tables   dd ?
2288 clevermous 554
 
2384 hidnplayr 555
        cpu_vendor      dd ?
556
                        dd ?
557
                        dd ?
558
        cpu_sign        dd ?
559
        cpu_info        dd ?
560
        cpu_caps        dd ?
561
                        dd ?
562
                        dd ?
563
ends
2288 clevermous 564
 
2384 hidnplayr 565
struct  LHEAD
566
        next            dd ?   ;next object in list
567
        prev            dd ?   ;prev object in list
568
ends
2288 clevermous 569
 
2384 hidnplayr 570
struct  MUTEX
571
        lhead   LHEAD
572
        count   dd ?
573
ends
2288 clevermous 574
 
2384 hidnplayr 575
struct  MEM_STATE
576
        mutex           MUTEX
577
        smallmap        dd ?
578
        treemap         dd ?
579
        topsize         dd ?
580
        top             dd ?
581
        smallbins       rd 4*32
582
        treebins        rd 32
583
ends
2288 clevermous 584
 
2384 hidnplayr 585
struct  PG_DATA
586
        mem_amount      dd ?
587
        vesa_mem        dd ?
588
        pages_count     dd ?
589
        pages_free      dd ?
590
        pages_faults    dd ?
591
        pagemap_size    dd ?
592
        kernel_pages    dd ?
593
        kernel_tables   dd ?
594
        sys_page_dir    dd ?
595
        mutex           MUTEX
596
ends
2288 clevermous 597
 
2384 hidnplayr 598
struct  SRV
599
        srv_name        rb 16    ;ASCIIZ string
600
        magic           dd ?     ;+0x10 ;'SRV '
601
        size            dd ?     ;+0x14 ;size of structure SRV
602
        fd              dd ?     ;+0x18 ;next SRV descriptor
603
        bk              dd ?     ;+0x1C ;prev SRV descriptor
604
        base            dd ?     ;+0x20 ;service base address
605
        entry           dd ?     ;+0x24 ;service START function
606
        srv_proc        dd ?     ;+0x28 ;user mode service handler
607
        srv_proc_ex     dd ?     ;+0x2C ;kernel mode service handler
608
ends
2288 clevermous 609
 
610
DRV_ENTRY    equ  1
611
DRV_EXIT     equ -1
612
 
2384 hidnplayr 613
struct  COFF_HEADER
614
        machine         dw ?
615
        nSections       dw ?
616
        DataTime        dd ?
617
        pSymTable       dd ?
618
        nSymbols        dd ?
619
        optHeader       dw ?
620
        flags           dw ?
621
ends
2288 clevermous 622
 
2384 hidnplayr 623
struct  COFF_SECTION
624
        Name            rb 8
625
        VirtualSize     dd ?
626
        VirtualAddress  dd ?
627
        SizeOfRawData   dd ?
628
        PtrRawData      dd ?
629
        PtrReloc        dd ?
630
        PtrLinenumbers  dd ?
631
        NumReloc        dw ?
632
        NumLinenum      dw ?
633
        Characteristics dd ?
634
ends
2288 clevermous 635
 
2384 hidnplayr 636
struct  COFF_RELOC
637
        VirtualAddress  dd ?
638
        SymIndex        dd ?
639
        Type            dw ?
640
ends
2288 clevermous 641
 
2384 hidnplayr 642
struct  COFF_SYM
643
        Name            rb 8
644
        Value           dd ?
645
        SectionNumber   dw ?
646
        Type            dw ?
647
        StorageClass    db ?
648
        NumAuxSymbols   db ?
649
ends
2288 clevermous 650
 
2384 hidnplayr 651
struct  IOCTL
652
        handle          dd ?
653
        io_code         dd ?
654
        input           dd ?
655
        inp_size        dd ?
656
        output          dd ?
657
        out_size        dd ?
658
ends
2288 clevermous 659
 
2384 hidnplayr 660
struct  IRQH
661
        list            LHEAD
662
        handler         dd ?   ;handler roututine
663
        data            dd ?   ;user-specific data
2414 Serge 664
ends