forked from KolibriOS/kolibrios
added bootlog message if first app cannot be loaded
git-svn-id: svn://kolibrios.org@653 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
2fd4568906
commit
07eee4adec
@ -59,6 +59,7 @@ keymap_alt:
|
||||
boot_tsc db 'Reading TSC',0
|
||||
boot_pal_ega db 'Setting EGA/CGA 320x200 palette',0
|
||||
boot_pal_vga db 'Setting VGA 640x480 palette',0
|
||||
boot_failed db 'Failed to start first app',0
|
||||
boot_mtrr db 'Setting MTRR',0
|
||||
boot_tasking db 'All set - press ESC to start',0
|
||||
|
||||
|
@ -799,6 +799,9 @@ no_load_vrr_m:
|
||||
cmp eax,2 ; continue if a process has been loaded
|
||||
je first_app_found
|
||||
|
||||
mov esi, boot_failed
|
||||
call boot_log
|
||||
|
||||
mov eax, 0xDEADBEEF ; otherwise halt
|
||||
hlt
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user