forked from KolibriOS/kolibrios
8f992ed021
git-svn-id: svn://kolibrios.org@1635 a494cfbc-eb01-0410-851d-a64ba20cac60
56 lines
1.3 KiB
PHP
56 lines
1.3 KiB
PHP
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;; ;;
|
|
;; Copyright (C) KolibriOS team 2004-2007. All rights reserved. ;;
|
|
;; Distributed under terms of the GNU General Public License ;;
|
|
;; ;;
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
|
|
|
; boot data: common strings (for all languages)
|
|
macro line_full_top {
|
|
db 201
|
|
times 78 db 205
|
|
db 187
|
|
}
|
|
macro line_full_bottom {
|
|
db 200
|
|
times 78 db 205
|
|
db 188
|
|
}
|
|
macro line_half {
|
|
db 186,' '
|
|
times 76 db 0xc4
|
|
db ' ',186
|
|
}
|
|
macro line_space {
|
|
db 186
|
|
times 78 db 32
|
|
db 186
|
|
}
|
|
d80x25_top:
|
|
line_full_top
|
|
cur_line_pos = 75
|
|
; store byte ' ' at d80x25_top+cur_line_pos+1
|
|
; store byte ' ' at d80x25_top+cur_line_pos
|
|
; store dword ' SVN' at d80x25_top+cur_line_pos-4
|
|
|
|
space_msg: line_space
|
|
;verstr:
|
|
; line_space
|
|
; version string
|
|
; db 186,32
|
|
; repeat 78
|
|
; load a byte from version+%-1
|
|
; if a = 13
|
|
; break
|
|
; end if
|
|
; db a
|
|
; end repeat
|
|
; repeat 78 - ($-verstr)
|
|
; db ' '
|
|
; end repeat
|
|
; db 32,186
|
|
; line_half
|
|
|