Subversion Repositories Kolibri OS

Rev

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

Rev 3545 Rev 3618
Line 529... Line 529...
529
        stosd
529
        stosd
530
 
530
 
531
; now the filesize in ascii
531
; now the filesize in ascii
Line 532... Line 532...
532
        mov     eax, [ebx + FileInfoA.FileSizeLow]
532
        mov     eax, dword[ebx + FileInfoA.FileSize]
533
        call    dword_to_ascii
533
        call    dword_to_ascii
534
        mov     al, ' '
534
        mov     al, ' '
535
        stosb
535
        stosb
536
 
536
 
Line 537... Line 537...
537
; then date (month/day/year)
537
; then date (month/day/year)
538
        movzx   eax, [ebx + FileInfoA.DateModify + FileDateTime.month]
538
        movzx   eax, [ebx + FileInfoA.DateModify.month]
539
        cmp     eax, 12
539
        cmp     eax, 12
540
        ja      @f
540
        ja      @f
541
        mov     eax, [months - 4 + 4*eax]
541
        mov     eax, [months - 4 + 4*eax]
542
        stosd
542
        stosd
543
       @@:
543
       @@:
Line 544... Line 544...
544
 
544
 
545
        movzx   eax, [ebx + FileInfoA.DateModify + FileDateTime.day]
545
        movzx   eax, [ebx + FileInfoA.DateModify.day]
546
        call    dword_to_ascii
546
        call    dword_to_ascii
547
        mov     al, ' '
547
        mov     al, ' '
Line 548... Line 548...
548
        stosb
548
        stosb
549
 
549
 
550
        movzx   eax, [ebx + FileInfoA.DateModify + FileDateTime.year]
550
        movzx   eax, [ebx + FileInfoA.DateModify.year]
551
        call    dword_to_ascii
551
        call    dword_to_ascii
Line 552... Line 552...
552
        mov     al, ' '
552
        mov     al, ' '