Subversion Repositories Kolibri OS

Rev

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

Rev 2465 Rev 3500
Line 9... Line 9...
9
;;  KolibriOS 16-bit loader,                                    ;;
9
;;  KolibriOS 16-bit loader,                                    ;;
10
;;                        based on bootcode for MenuetOS        ;;
10
;;                        based on bootcode for MenuetOS        ;;
11
;;                                                              ;;
11
;;                                                              ;;
12
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
12
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Line 13... Line 13...
13
 
13
 
Line 14... Line 14...
14
$Revision: 2465 $
14
$Revision: 3500 $
15
 
15
 
16
 
16
 
Line 861... Line 861...
861
        cmp     al, 1
861
        cmp     al, 1
862
        ja      @f
862
        ja      @f
863
        mov     [time_str+9], ' '
863
        mov     [time_str+9], ' '
864
        mov     [time_str+10], ' '
864
        mov     [time_str+10], ' '
865
@@:
865
@@:
-
 
866
else if lang eq sp
-
 
867
; esperar 5/4/3/2 segundos, 1 segundo
-
 
868
        cmp     al, 1
-
 
869
        mov     cl, 's'
-
 
870
        ja      @f
-
 
871
        mov     cl, ' '
-
 
872
@@:
-
 
873
        mov     [time_str+10], cl
866
else
874
else
867
; wait 5/4/3/2 seconds, 1 second
875
; wait 5/4/3/2 seconds, 1 second
868
        cmp     al, 1
876
        cmp     al, 1
869
        mov     cl, 's'
877
        mov     cl, 's'
870
        ja      @f
878
        ja      @f
Line 915... Line 923...
915
        mov     ah, 0
923
        mov     ah, 0
916
        int     16h
924
        int     16h
917
        or      al, 20h
925
        or      al, 20h
918
        cmp     al, 'n'
926
        cmp     al, 'n'
919
        jz      .loadc
927
        jz      .loadc
-
 
928
        if lang eq sp
-
 
929
        cmp     al, 's'
-
 
930
        else
920
        cmp     al, 'y'
931
        cmp     al, 'y'
-
 
932
        end if
921
        jnz     .waityn
933
        jnz     .waityn
922
        call    putchar
934
        call    putchar
923
        mov     byte [space_msg+80], 186
935
        mov     byte [space_msg+80], 186
Line 924... Line 936...
924
 
936