Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1065 Lrz 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
 
8
 
9
 
10
; boot data: common strings (for all languages)
11
macro line_full_top {
12
          db       201
13
          times    78   db 205
14
          db       187
15
}
16
macro line_full_bottom {
17
          db       200
18
          times    78   db 205
19
          db       188
20
}
21
macro line_half {
22
          db      186,' '
23
          times    76   db 0xc4
24
          db      ' ',186
25
}
26
macro line_space {
27
          db      186
28
          times   78 db 32
29
          db      186
30
}
31
d80x25_top:
32
		line_full_top
33
cur_line_pos = 75
34
;        store byte ' ' at d80x25_top+cur_line_pos+1
35
;        store byte ' ' at d80x25_top+cur_line_pos
36
;        store dword ' SVN' at d80x25_top+cur_line_pos-4
37
 
38
space_msg:	line_space
39
;verstr:
40
;		line_space
41
; version string
42
;	db 186,32
43
;	repeat 78
44
;		load a byte from version+%-1
45
;		if a = 13
46
;			break
47
;		end if
48
;		db a
49
;	end repeat
50
;	repeat 78 - ($-verstr)
51
;		db	' '
52
;	end repeat
53
;	db 32,186
54
;		line_half
55