Subversion Repositories Kolibri OS

Rev

Rev 1084 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
750 victor 1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2
;;                                                              ;;
3
;; Copyright (C) KolibriOS team 2004-2007. All rights reserved. ;;
4
;; Distributed under terms of the GNU General Public License    ;;
5
;;                                                              ;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7
 
1 ha 8
;======================================================================
9
;
10
;                           BOOT DATA
11
;
12
;======================================================================
13
 
593 mikedld 14
$Revision: 1942 $
15
 
16
 
29 halyavin 17
d80x25_bottom:
716 Lrz 18
          db       186,' KolibriOS is based on MenuetOS and comes with ABSOLUTELY '
726 diamond 19
          db       'NO WARRANTY         ',186
20
          db       186,' See file COPYING for details                             '
21
          db       '                    ',186
1 ha 22
          line_full_bottom
29 halyavin 23
d80x25_bottom_num = 3
1 ha 24
 
715 Lrz 25
msg_apm   db      " APM x.x ", 0
26
vervesa   db      "Version of Vesa: Vesa x.x",13,10,0
1 ha 27
novesa    db      "Display: EGA/CGA",13,10,0
715 Lrz 28
s_vesa    db      "Version of VESA: "
29
  .ver    db      "?.?",13,10,0
30
 
724 diamond 31
gr_mode   db      "Select a videomode: ",13,10,0
715 Lrz 32
;s_bpp     db      13,10,186," ƒ«ã¡¨­  梥â : "
33
;  .bpp    dw      "??"
34
;          db      13,10,0
35
 
40 halyavin 36
vrrmprint db      "Apply VRR? (picture frequency greater than 60Hz"
1 ha 37
          db      " only for transfers:",13,10
38
          db      186," 1024*768->800*600 and 800*600->640*480) [1-yes,2-no]:",0
715 Lrz 39
 
40
 
709 diamond 41
ask_bd     db      "Add disks visible by BIOS emulated in V86-mode? [1-yes, 2-no]: ",0
715 Lrz 42
 
1942 clevermous 43
bdev      db      "Load ramdisk from [1-floppy; 2-kolibri.img]: ",0
1 ha 44
probetext db      13,10,13,10,186," Use standart graphics mode? [1-yes, "
45
          db      "2-probe bios (Vesa 3.0)]: ",0
46
;memokz256 db      13,10,186," RAM 256 Mb",0
47
;memokz128 db      13,10,186," RAM 128 Mb",0
48
;memokz64  db      13,10,186," RAM 64 Mb",0
49
;memokz32  db      13,10,186," RAM 32 Mb",0
50
;memokz16  db      13,10,186," RAM 16 Mb",0
40 halyavin 51
prnotfnd  db      "Fatal - Videomode not found.",0
52
;modena    db      "Fatal - VBE 0x112+ required.",0
1 ha 53
not386    db      "Fatal - CPU 386+ required.",0
40 halyavin 54
btns      db      "Fatal - Can't determine color depth.",0
55
fatalsel  db      "Fatal - Graphics mode not supported by hardware.",0
716 Lrz 56
pres_key  db      "Press any key to choose a new videomode.",0
40 halyavin 57
badsect   db      13,10,186," Fatal - Bad sector. Replace floppy.",0
58
memmovefailed db  13,10,186," Fatal - Int 0x15 move failed.",0
29 halyavin 59
okt       db      " ... OK"
1 ha 60
linef     db      13,10,0
40 halyavin 61
diskload  db      "Loading diskette: 00 %",8,8,8,8,0
62
pros      db      "00"
63
backspace2 db     8,8,0
1 ha 64
boot_dev  db      0  ; 0=floppy, 1=hd
29 halyavin 65
start_msg db      "Press [abcd] to change settings, press [Enter] to continue booting",13,10,0
66
time_msg  db      " or wait "
67
time_str  db      " 5 seconds"
68
          db      " before automatical continuation",13,10,0
69
current_cfg_msg db "Current settings:",13,10,0
70
curvideo_msg db   " [a] Videomode: ",0
715 Lrz 71
 
72
;modes_msg dw mode4,mode1,mode2,mode3
73
;modevesa20 db     " with LFB",0
74
;modevesa12 db     ", VESA 1.2 Bnk",0
75
mode0     db      "320x200, EGA/CGA 256 colors",13,10,0
76
mode9     db      "640x480, VGA 16 colors",13,10,0
77
 
78
;probeno_msg db    " (standard mode)",0
79
;probeok_msg db    " (check nonstandard modes)",0
709 diamond 80
;dma_msg   db      " [b] Use DMA for HDD access:",0
81
usebd_msg db      " [b] Add disks visible by BIOS:",0
29 halyavin 82
on_msg    db      " on",13,10,0
83
off_msg   db      " off",13,10,0
709 diamond 84
;readonly_msg db   " only for reading",13,10,0
29 halyavin 85
vrrm_msg  db      " [c] Use VRR:",0
86
preboot_device_msg db " [d] Floppy image: ",0
1942 clevermous 87
preboot_device_msgs dw 0,pdm1,pdm2,0
29 halyavin 88
pdm1      db      "real floppy",13,10,0
202 diamond 89
pdm2      db      "C:\kolibri.img (FAT32)",13,10,0
29 halyavin 90
loading_msg db    "Loading KolibriOS...",0
713 Lrz 91
 
92
_st db 186,'                   ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÂÄ¿',13,10,0
730 diamond 93
_r1 db 186,'                   ³  320x200  EGA/CGA 256 colors  ³ ³',13,10,0
94
_r2 db 186,'                   ³  640x480  VGA 16 colors       ³ ³',13,10,0
95
_rs db 186,'                   ³  ????x????@??  SVGA VESA      ³ ³',13,10,0
713 Lrz 96
_bt db 186,'                   ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÁÄÙ',13,10,0
726 diamond 97
 
98
remark1 db      "Default values were selected to match most of configurations, but not all.",0
1084 diamond 99
remark2 db      "If you have CRT-monitor, enable VRR in the item [c].",0
726 diamond 100
remark3 db      "If the system does not boot, try to disable the item [b].",0
101
remarks dw      remark1, remark2, remark3
102
num_remarks = 3