Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 83 → Rev 84

/kernel/trunk/boot/booteng.inc
55,6 → 55,7
novesa db "Display: EGA/CGA",13,10,0
vervesa db "Version of Vesa: Vesa x.x",13,10,0
vervesa_off=22
msg_apm db " APM x.x ", 0
gr_mode db 186," Vesa 2.0+ 16 M LFB: [1] 640x480, [2] 800x600, "
db "[3] 1024x768, [4] 1280x1024",13,10
db 186," Vesa 1.2 16 M Bnk: [5] 640x480, [6] 800x600, "
/kernel/trunk/fs/fs_lfn.inc
53,11 → 53,12
; 1 : read folder
; 2 : create/rewrite file
; 3 : write/append to file - not implemented yet
; 4 : delete file - not implemented yet
; 5 : create directory - not implemented yet
; 6 : rename file/directory - not implemented yet
; 7 : get file attributes structure - not implemented yet
; 8 : start application - not implemented yet
; 4 : set end of file - not implemented yet
; 5 : get file attributes structure - not implemented yet
; 6 : start application - not implemented yet
; 7 : delete file - not implemented yet
; 8 : create directory - not implemented yet
; 9 : rename file/directory - not implemented yet
 
add eax, std_application_base_address
; parse file name
64,6 → 65,12
xchg ebx, eax
lea esi, [ebx+20]
lodsb
test al, al
jnz @f
mov esi, [esi]
add esi, std_application_base_address
lodsb
@@:
cmp al, '/'
jz @f
.notfound: