Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
851 serge 1
 
2
3
 
4
 
5
6
 
7
8
 
9
10
 
11
include "../kglobals.inc"
12
include "../lang.inc"
13
14
 
15
public _leave_bootscreen
16
17
 
18
19
 
20
21
 
22
23
 
24
 
25
26
 
27
28
 
29
           mov eax, cr0
30
           and eax, not 0x80000001
31
           mov cr0, eax
32
           jmp far 0x1000:start_of_code
33
34
 
35
36
 
37
include "preboot.inc"
38
39
 
40
include "booteng.inc"     ; english system boot messages
41
else if lang eq ru
42
include "bootru.inc"      ; russian system boot messages
43
include "ru.inc"          ; Russian font
44
else if lang eq et
45
include "bootet.inc"      ; estonian system boot messages
46
include "et.inc"          ; Estonian font
47
else
48
include "bootge.inc"      ; german system boot messages
49
end if
50
51
 
52
53
 
54
include "../bus/pci/pci16.inc"
55
include "../detect/biosdisk.inc"
56
57
 
58
59
 
60
61
 
62
           or eax, 0x80000001
63
           mov cr0, eax
64
65
 
66
67
 
68
_leave_bootscreen:
69