Subversion Repositories Kolibri OS

Rev

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

Rev 3478 Rev 3634
Line 21... Line 21...
21
program.memory dd end_ + STACK_SIZE
21
program.memory dd end_ + STACK_SIZE
22
program.stack  dd end_ + STACK_SIZE
22
program.stack  dd end_ + STACK_SIZE
23
program.params dd 0
23
program.params dd 0
24
program.path   dd 0
24
program.path   dd 0
Line -... Line 25...
-
 
25
 
-
 
26
include 'lang.inc'
25
 
27
 
26
; ======================================================================= ;    
28
; ======================================================================= ;
27
start_:
29
start_:
28
; set.event
30
; set.event
29
        mov eax, 40
31
        mov eax, 40
Line 679... Line 681...
679
sz_OpenDialog_start         db "OpenDialog_start",0
681
sz_OpenDialog_start         db "OpenDialog_start",0
680
sz_FFFFFFFF_open_dialog     db "FFFFFFFF_open_dialog",0
682
sz_FFFFFFFF_open_dialog     db "FFFFFFFF_open_dialog",0
681
sz_SYS                      db "/sys",0
683
sz_SYS                      db "/sys",0
682
sz_opendial_path            db "/sys/File managers/opendial",0
684
sz_opendial_path            db "/sys/File managers/opendial",0
Line -... Line 685...
-
 
685
 
-
 
686
if lang eq it
-
 
687
	sz_Program_run_successfully db "Programma eseguito correttamente",0
-
 
688
	sz_File_not_found           db "File non trovato",0
-
 
689
	sz_File_is_not_executable   db "File non eseguibile",0
-
 
690
	sz_Too_many_processes       db "Troppi processi",0
-
 
691
	sz_Access_denied            db "Accesso negato",0
-
 
692
	sz_Out_of_memory            db "Out of memory",0
-
 
693
	sz_Unknown_error            db "Errore sconosciuto",0
-
 
694
 
-
 
695
	sz_Type_name_of_program     db "Digita il nome del programma per eseguirlo",0
-
 
696
 
-
 
697
	sz_run                      db "Esegui ",0
-
 
698
	sz_browse                   db " Naviga",0
-
 
699
 
683
 
700
else
684
sz_Program_run_successfully db "Program run successfully",0
701
	sz_Program_run_successfully db "Program run successfully",0
685
sz_File_not_found           db "File not found",0
702
	sz_File_not_found           db "File not found",0
686
sz_File_is_not_executable   db "File is not executable",0
703
	sz_File_is_not_executable   db "File is not executable",0
687
sz_Too_many_processes       db "Too many processes",0
704
	sz_Too_many_processes       db "Too many processes",0
Line 691... Line 708...
691
 
708
 
Line 692... Line 709...
692
sz_Type_name_of_program     db "Type name of program, and Kolibri will run it for you",0
709
	sz_Type_name_of_program     db "Type name of program, and Kolibri will run it for you",0
693
 
710
 
694
sz_run                      db "  Run  ",0
711
	sz_run                      db "  Run  ",0
695
sz_browse                   db " Browse ",0
712
	sz_browse                   db " Browse ",0
696
 
713
end if