forked from KolibriOS/kolibrios
Restored text "All set - press ESC to start" because it is useful for debugging (when one needs to view log)
git-svn-id: svn://kolibrios.org@767 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
b9272bd614
commit
e5d49b5269
@ -28,6 +28,7 @@ preboot_dma db 0 ; use DMA for access to HDD (1-always, 2-only for read, 3-n
|
|||||||
preboot_device db 0 ; boot device
|
preboot_device db 0 ; boot device
|
||||||
; (1-floppy 2-harddisk 3-kernel restart 4-format ram disk)
|
; (1-floppy 2-harddisk 3-kernel restart 4-format ram disk)
|
||||||
;!!!! 0 - autodetect !!!!
|
;!!!! 0 - autodetect !!!!
|
||||||
|
preboot_blogesc = 0 ; start immediately after bootlog
|
||||||
preboot_biosdisk db 0 ; use V86 to access disks through BIOS (1-yes, 2-no)
|
preboot_biosdisk db 0 ; use V86 to access disks through BIOS (1-yes, 2-no)
|
||||||
|
|
||||||
if $>0x200
|
if $>0x200
|
||||||
|
@ -67,6 +67,9 @@ keymap_alt:
|
|||||||
boot_pal_vga db 'Setting VGA 640x480 palette',0
|
boot_pal_vga db 'Setting VGA 640x480 palette',0
|
||||||
boot_failed db 'Failed to start first app',0
|
boot_failed db 'Failed to start first app',0
|
||||||
boot_mtrr db 'Setting MTRR',0
|
boot_mtrr db 'Setting MTRR',0
|
||||||
|
if preboot_blogesc
|
||||||
|
boot_tasking db 'All set - press ESC to start',0
|
||||||
|
end if
|
||||||
|
|
||||||
new_process_loading db 'K : New Process - loading',13,10,0
|
new_process_loading db 'K : New Process - loading',13,10,0
|
||||||
new_process_running db 'K : New Process - done',13,10,0
|
new_process_running db 'K : New Process - done',13,10,0
|
||||||
|
@ -853,6 +853,14 @@ first_app_found:
|
|||||||
|
|
||||||
; START MULTITASKING
|
; START MULTITASKING
|
||||||
|
|
||||||
|
if preboot_blogesc
|
||||||
|
mov esi, boot_tasking
|
||||||
|
call boot_log
|
||||||
|
.bll1: in al, 0x60 ; wait for ESC key press
|
||||||
|
cmp al, 129
|
||||||
|
jne .bll1
|
||||||
|
end if
|
||||||
|
|
||||||
; mov [ENABLE_TASKSWITCH],byte 1 ; multitasking enabled
|
; mov [ENABLE_TASKSWITCH],byte 1 ; multitasking enabled
|
||||||
|
|
||||||
; UNMASK ALL IRQ'S
|
; UNMASK ALL IRQ'S
|
||||||
|
Loading…
Reference in New Issue
Block a user