2011-10-14 23:38:50 +02:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; ;;
|
2015-01-08 21:10:22 +01:00
|
|
|
;; Copyright (C) KolibriOS team 2004-2015. All rights reserved. ;;
|
2011-10-14 23:38:50 +02:00
|
|
|
;; Distributed under terms of the GNU General Public License ;;
|
|
|
|
;; ;;
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
|
|
|
$Revision$
|
|
|
|
|
|
|
|
|
|
|
|
; 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
|
2017-12-16 21:21:10 +01:00
|
|
|
cur_line_pos = 72
|
|
|
|
; this signature will be replaced with revision number (in kernel.asm)
|
|
|
|
store dword '****' at d80x25_top + cur_line_pos
|
2011-10-14 23:38:50 +02:00
|
|
|
|
|
|
|
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
|
|
|
|
d80x25_top_num = 4
|