Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
425 victor 1
$Revision: 437 $
431 serge 2
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3
;;                                                              ;;
4
;; Copyright (C) KolibriOS team 2004-2007. All rights reserved. ;;
5
;; Distributed under terms of the GNU General Public License    ;;
6
;;                                                              ;;
7
;; KERNEL16.INC                                                 ;;
8
;;                                                              ;;
9
;; Included 16 bit kernel files for MenuetOS                    ;;
10
;;                                                              ;;
11
;; This file is kept separate as it will be easier to           ;;
12
;; maintain and compile with an automated SETUP program         ;;
13
;; in the future.                                               ;;
14
;;                                                              ;;
15
;; Copyright Ville Turjanmaa, see file COPYING for details.     ;;
16
;;                                                              ;;
17
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1 ha 18
 
19
 
20
;% +include
21
 
22
;!!!
437 diamond 23
include "boot/bootstr.inc"     ; language-independent boot messages
1 ha 24
if lang eq en
25
include "boot/booteng.inc"     ; english system boot messages
135 diamond 26
else if lang eq ru
27
include "boot/bootru.inc"      ; russian system boot messages
271 kaitz 28
else if lang eq et
29
include "boot/bootet.inc"      ; estonian system boot messages
1 ha 30
else
135 diamond 31
include "boot/bootge.inc"      ; german system boot messages
1 ha 32
;!!!
33
end if
274 kaitz 34
if lang eq et
35
include "boot/et.inc"          ; Estonian font
426 mikedld 36
else if lang eq ru
1 ha 37
include "boot/ru.inc"          ; Russian font
274 kaitz 38
end if
424 spraid 39
 
40
; сюда данные записываются в 16 разрядном режиме, читаются в 32 разрядном
41
bx_from_load:			; структура для хранения параметров- откуда гашрузились, берется ниже из bx ; {SPraid}[13.03.2007]
431 serge 42
.from_disc	db 0		; a,b,c,d - винчестеры, r - рам диск
424 spraid 43
.from_part	db 0,0		; # диска... символ, а не байт. '1', а не 1
44
 
82 halyavin 45
org $-0x10000
1 ha 46
 
47
include "boot/bootcode.inc"    ; 16 bit system boot code
48
 
49
include "bus/pci/pci16.inc"
50
 
431 serge 51
;% -include