Subversion Repositories Kolibri OS

Rev

Rev 401 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 401 Rev 438
Line -... Line 1...
-
 
1
$Revision: 437 $
1
;======================================================================
2
;======================================================================
2
;
3
;
3
;                           BOOT DATA
4
;                           BOOT DATA
4
;
5
;
5
;======================================================================
6
;======================================================================
Line 6... Line -...
6
 
-
 
7
macro line_full_top {
-
 
8
          db       201
-
 
9
          times    78   db 205
-
 
10
          db       187
-
 
11
}
-
 
12
macro line_full_bottom {
-
 
13
          db       200
-
 
14
          times    78   db 205
-
 
15
          db       188
-
 
16
}
-
 
17
macro line_half {
-
 
18
          db      186,' '
-
 
19
          times    76   db 0xc4
-
 
20
          db      ' ',186
-
 
21
}
-
 
22
macro line_space {
-
 
23
          db      186
-
 
24
          times   78 db 32
-
 
25
          db      186
-
 
26
}
-
 
27
d80x25_top:
-
 
28
		line_full_top
-
 
29
space_msg:	line_space
-
 
30
verstr:
-
 
31
;		line_space
-
 
32
; version string
-
 
33
	db 186,32
-
 
34
	repeat 78
-
 
35
		load a byte from version+%-1
-
 
36
		if a = 13
-
 
37
			break
-
 
38
		end if
-
 
39
		db a
-
 
40
	end repeat
-
 
41
	repeat 78 - ($-verstr)
-
 
42
		db	' '
-
 
43
	end repeat
-
 
44
	db 32,186
-
 
45
		line_half
-
 
46
d80x25_top_num = 4
7
 
47
d80x25_bottom:
8
d80x25_bottom:
48
;          db       186,' KolibriOS based on MenuetOS and comes with ABSOLUTELY '
9
;          db       186,' KolibriOS based on MenuetOS and comes with ABSOLUTELY '
49
;          db       'NO WARRANTY            ',186
10
;          db       'NO WARRANTY            ',186
50
;          db       186,' See file COPYING for details                          '
11
;          db       186,' See file COPYING for details                          '