Subversion Repositories Kolibri OS

Rev

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

Rev 539 Rev 661
Line 18... Line 18...
18
    dd      I_END                   ; program image size
18
    dd      I_END                   ; program image size
19
    dd      0x170000                ; required amount of memory
19
    dd      0x170000                ; required amount of memory
20
    dd      0x7FFF0                 ; esp = 0x7FFF0
20
    dd      0x7FFF0                 ; esp = 0x7FFF0
21
    dd      0, 0                    ; no params, no path
21
    dd      0, 0                    ; no params, no path
Line 22... Line 22...
22
 
22
 
23
include '..\..\..\macros.inc'
23
include 'macros.inc'
24
; Various states of client connection
24
; Various states of client connection
25
USER_NONE       equ 0   ; Awaiting a connection
25
USER_NONE       equ 0   ; Awaiting a connection
26
USER_CONNECTED  equ 1   ; User just connected, prompt given
26
USER_CONNECTED  equ 1   ; User just connected, prompt given
27
USER_USERNAME   equ 2   ; User given username
27
USER_USERNAME   equ 2   ; User given username
Line 178... Line 178...
178
    mcall
178
    mcall
Line 179... Line 179...
179
 
179
 
180
    xor  eax,eax                   ; DRAW WINDOW
180
    xor  eax,eax                   ; DRAW WINDOW
181
    mov  ebx,100*65536+491 + 8 +15
181
    mov  ebx,100*65536+491 + 8 +15
182
    mov  ecx,100*65536+270 + 20     ; 20 for status bar
182
    mov  ecx,100*65536+270 + 20     ; 20 for status bar
183
    mov  edx,0x13000000
183
    mov  edx,0x14000000
184
    mov  edi,labelt
184
    mov  edi,labelt
Line 185... Line 185...
185
    mcall
185
    mcall
186
 
186