6f7428a7e4
Output SVN revision number in boot screen git-svn-id: svn://kolibrios.org@426 a494cfbc-eb01-0410-851d-a64ba20cac60
51 lines
1.8 KiB
PHP
51 lines
1.8 KiB
PHP
$Revision$
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;; ;;
|
|
;; KERNEL16.INC ;;
|
|
;; ;;
|
|
;; Included 16 bit kernel files for MenuetOS ;;
|
|
;; ;;
|
|
;; This file is kept separate as it will be easier to ;;
|
|
;; maintain and compile with an automated SETUP program ;;
|
|
;; in the future. ;;
|
|
;; ;;
|
|
;; Copyright Ville Turjanmaa, see file COPYING for details. ;;
|
|
;; ;;
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
|
;% +include
|
|
|
|
msg_svn db " SVN ",0
|
|
msg_svn.len = $ - msg_svn
|
|
svn_num_buf rb 12
|
|
|
|
;!!!
|
|
if lang eq en
|
|
include "boot/booteng.inc" ; english system boot messages
|
|
else if lang eq ru
|
|
include "boot/bootru.inc" ; russian system boot messages
|
|
else if lang eq et
|
|
include "boot/bootet.inc" ; estonian system boot messages
|
|
else
|
|
include "boot/bootge.inc" ; german system boot messages
|
|
;!!!
|
|
end if
|
|
if lang eq et
|
|
include "boot/et.inc" ; Estonian font
|
|
else if lang eq ru
|
|
include "boot/ru.inc" ; Russian font
|
|
end if
|
|
|
|
; ñþäà äàííûå çàïèñûâàþòñÿ â 16 ðàçðÿäíîì ðåæèìå, ÷èòàþòñÿ â 32 ðàçðÿäíîì
|
|
bx_from_load: ; ñòðóêòóðà äëÿ õðàíåíèÿ ïàðàìåòðîâ- îòêóäà ãàøðóçèëèñü, áåðåòñÿ íèæå èç bx ; {SPraid}[13.03.2007]
|
|
.from_disc db 0 ; a,b,c,d - âèí÷åñòåðû, r - ðàì äèñê
|
|
.from_part db 0,0 ; # äèñêà... ñèìâîë, à íå áàéò. '1', à íå 1
|
|
|
|
org $-0x10000
|
|
|
|
include "boot/bootcode.inc" ; 16 bit system boot code
|
|
|
|
include "bus/pci/pci16.inc"
|
|
|
|
;% -include |