Subversion Repositories Kolibri OS

Rev

Rev 7114 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2288 clevermous 1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2
;;                                                              ;;
5363 yogev_ezra 3
;; Copyright (C) KolibriOS team 2004-2015. All rights reserved. ;;
2288 clevermous 4
;; Distributed under terms of the GNU General Public License    ;;
5
;;                                                              ;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7
 
8
$Revision: 7129 $
9
 
10
 
11
; boot data: common strings (for all languages)
12
macro line_full_top {
13
          db       201
14
          times    78   db 205
15
          db       187
16
}
17
macro line_full_bottom {
18
          db       200
19
          times    78   db 205
20
          db       188
21
}
22
macro line_half {
23
          db      186,' '
24
          times    76   db 0xc4
25
          db      ' ',186
26
}
27
macro line_space {
28
          db      186
29
          times   78 db 32
30
          db      186
31
}
32
d80x25_top:
33
                line_full_top
7129 dunkaist 34
    cur_line_pos = 72
35
    ; this signature will be replaced with revision number (in kernel.asm)
36
    store dword '****' at d80x25_top + cur_line_pos
2288 clevermous 37
 
38
space_msg:
39
                line_space
40
verstr:
41
;               line_space
42
; version string
43
        db 186,32
44
        repeat 78
45
                load a byte from version+%-1
46
                if a = 13
47
                        break
48
                end if
49
                db a
50
        end repeat
51
        repeat 78 - ($-verstr)
52
                db      ' '
53
        end repeat
54
        db 32,186
55
                line_half
56
d80x25_top_num = 4