* Sync to recent trunk (r52563).
[reactos.git] / boot / freeldr / freeldr / arch / i386 / boot.S
1 /*
2 * FreeLoader
3 * Copyright (C) 1998-2002 Brian Palmer <brianp@sginet.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 .text
21 .code16
22
23 #include <arch/pc/x86common.h>
24
25 EXTERN(_ChainLoadBiosBootSectorCode)
26 .code32
27
28 call switch_to_real
29 .code16
30
31 /* Set the boot drive */
32 movb (_FrldrBootDrive),%dl
33
34 /* Load segment registers */
35 cli
36 movw $0x0000,%bx
37 movw %bx,%ds
38 movw %bx,%es
39 movw %bx,%fs
40 movw %bx,%gs
41 movw %bx,%ss
42 movw $0x7C00,%sp
43
44 ljmpl $0x0000,$0x7C00
45
46 EXTERN(_SoftReboot)
47 .code32
48
49 call switch_to_real
50 .code16
51
52 movw $0x40,%ax
53 movw %ax,%ds
54 movw $0x72,%si
55
56 // Set the word at location 40:72 to 1234h
57 movw $0x1234,(%si)
58
59 // and jump to location FFFF:0 in ROM
60 ljmpl $0xFFFF,$0x0000