Subversion Repositories Kolibri OS

Rev

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

Rev 447 Rev 485
Line 23... Line 23...
23
   dd     START                   ; start of code
23
   dd     START                   ; start of code
24
   dd     I_END                   ; size of image
24
   dd     I_END                   ; size of image
25
   dd     i_end+0x2000                  ; memory for app (4 Kb)
25
   dd     i_end+0x2000                  ; memory for app (4 Kb)
26
   dd     i_end+0x2000                  ; esp
26
   dd     i_end+0x2000                  ; esp
27
   dd     0x0 , 0x0               ; I_Param , I_Icon
27
   dd     0x0 , 0x0               ; I_Param , I_Icon
28
include 'MACROS.INC'
28
include '..\..\..\MACROS.INC'
29
include 'debug.inc'
29
include 'debug.inc'
30
purge newline
30
purge newline
31
MAXSTRINGS = 16
31
MAXSTRINGS = 16
32
TMP = 80*(MAXSTRINGS+1)
32
TMP = 80*(MAXSTRINGS+1)
Line 291... Line 291...
291
;   mov  ebx,50*65536+400          ; [x start] *65536 + [x size]
291
;   mov  ebx,50*65536+400          ; [x start] *65536 + [x size]
292
    mov  ebx,[xstart]
292
    mov  ebx,[xstart]
293
    mov  ecx,MAXSTRINGS*10+45      ; [y start] *65536 + [y size]
293
    mov  ecx,MAXSTRINGS*10+45      ; [y start] *65536 + [y size]
294
    mov  edx,[sc.work]             ; color of work area RRGGBB,8->color gl
294
    mov  edx,[sc.work]             ; color of work area RRGGBB,8->color gl
295
    or   edx,0x13000000
295
    or   edx,0x13000000
296
    mov  edi,header                ; WINDOW LABEL
296
    mov  edi,title                ; WINDOW LABEL
297
    mcall
297
    mcall
Line 298... Line 298...
298
    
298
    
299
    mov  ecx,4
299
    mov  ecx,4
300
    mov  esi,[sc.work]
300
    mov  esi,[sc.work]
Line 514... Line 514...
514
dump_cell_marg dd LMARGIN shl 16,(LMARGIN+16*HSPACE+15)shl 16
514
dump_cell_marg dd LMARGIN shl 16,(LMARGIN+16*HSPACE+15)shl 16
515
dump_cell_size dw HSPACE,VSPACE,6,VSPACE
515
dump_cell_size dw HSPACE,VSPACE,6,VSPACE
516
; 11,11 > 0,-1
516
; 11,11 > 0,-1
517
; 5,11  > 0,-1
517
; 5,11  > 0,-1
518
if lang eq ru
518
if lang eq ru
519
   header    db   '„®áª  ®â« ¤ª¨ ¨ á®®¡é¥­¨©',0
519
   title    db   '„®áª  ®â« ¤ª¨ ¨ á®®¡é¥­¨©',0
520
else if lang eq en
520
else if lang eq en
521
   header    db   'General debug & message board',0
521
   title    db   'General debug & message board',0
522
else
522
else
523
   header    db   'Allgemeines debug- & nachrichtenboard',0
523
   title    db   'Allgemeines debug- & nachrichtenboard',0
524
end if
524
end if
525
   krnl_cnt dd 0
525
   krnl_cnt dd 0
526
   vmode dd 0
526
   vmode dd 0
527
   targ  dd text2
527
   targ  dd text2
528
I_END:
528
I_END: