Subversion Repositories Kolibri OS

Rev

Rev 1289 | Rev 1310 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1289 Rev 1300
Line 3... Line 3...
3
;; Copyright (C) KolibriOS team 2004-2009. All rights reserved. ;;
3
;; Copyright (C) KolibriOS team 2004-2009. All rights reserved. ;;
4
;; Distributed under terms of the GNU General Public License    ;;
4
;; Distributed under terms of the GNU General Public License    ;;
5
;;                                                              ;;
5
;;                                                              ;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Line 7... Line 7...
7
 
7
 
Line 8... Line 8...
8
$Revision: 1289 $
8
$Revision: 1300 $
9
 
9
 
10
 
10
 
Line 307... Line 307...
307
draw_data           equ (OS_BASE+0x0338000);
307
draw_data           equ (OS_BASE+0x0338000);
Line 308... Line 308...
308
 
308
 
309
BgrDrawMode         equ (OS_BASE+0x033BFF4)
309
BgrDrawMode         equ (OS_BASE+0x033BFF4)
310
BgrDataWidth        equ (OS_BASE+0x033BFF8)
310
BgrDataWidth        equ (OS_BASE+0x033BFF8)
311
BgrDataHeight       equ (OS_BASE+0x033BFFC)
-
 
312
WinMapAddress       equ (OS_BASE+0x033C000)
-
 
Line 313... Line 311...
313
display_data        equ (OS_BASE+0x033C000) ;1024*1280=0x140000
311
BgrDataHeight       equ (OS_BASE+0x033BFFC)
314
 
312
 
315
virtual at              (OS_BASE+0x047CF80)
313
virtual at              (OS_BASE+0x033CF80)
Line 316... Line 314...
316
  tss  TSS
314
  tss  TSS
Line 317... Line 315...
317
end virtual
315
end virtual
318
 
316
 
Line 319... Line 317...
319
sys_pgmap           equ (OS_BASE+0x047F000)
317
sys_pgmap           equ (OS_BASE+0x033F000)
Line 578... Line 576...
578
    .init_cursor    dd ?
576
    .init_cursor    dd ?
579
    .select_cursor  dd ?
577
    .select_cursor  dd ?
580
    .show_cursor    dd ?
578
    .show_cursor    dd ?
581
    .move_cursor    dd ?
579
    .move_cursor    dd ?
582
    .restore_cursor dd ?
580
    .restore_cursor dd ?
-
 
581
    .disable_mouse  dd ?
583
}
582
}
Line 584... Line 583...
584
 
583
 
585
virtual at 0
584
virtual at 0
586
  display_t display_t
585
  display_t display_t
Line 675... Line 674...
675
  .size              dd ?     ;+0x14 ;size of structure SRV
674
  .size              dd ?     ;+0x14 ;size of structure SRV
676
  .fd                dd ?     ;+0x18 ;next SRV descriptor
675
  .fd                dd ?     ;+0x18 ;next SRV descriptor
677
  .bk                dd ?     ;+0x1C ;prev SRV descriptor
676
  .bk                dd ?     ;+0x1C ;prev SRV descriptor
678
  .base              dd ?     ;+0x20 ;service base address
677
  .base              dd ?     ;+0x20 ;service base address
679
  .entry             dd ?     ;+0x24 ;service START function
678
  .entry             dd ?     ;+0x24 ;service START function
680
  .srv_proc          dd ?     ;+0x28 ;main service handler
679
  .srv_proc          dd ?     ;+0x28 ;user mode service handler
-
 
680
  .srv_proc_ex       dd ?     ;+0x2C ;kernel mode service handler
681
  .sizeof:
681
  .sizeof:
682
}
682
}
Line 683... Line 683...
683
 
683