blob: 07a7384927853d49b4e261e983b4775671295d23 [file] [log] [blame]
wdenk2262cfe2002-11-18 00:14:45 +00001/*
wdenk8bde7f72003-06-27 21:31:46 +00002 * U-boot - i386 Startup Code
wdenk2262cfe2002-11-18 00:14:45 +00003 *
4 * Copyright (c) 2002 Omicron Ceti AB, Daniel Engström <denaiel@omicron.se>
5 *
6 * See file CREDITS for list of people who contributed to this
7 * project.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22 * MA 02111-1307 USA
23 */
24
25/* Reset vector, jumps to start16.S */
26
27.extern start16
28
29.section .reset, "ax"
30.code16
wdenk8bde7f72003-06-27 21:31:46 +000031reset_vector:
32 cli
33 cld
34 jmp start16
wdenk2262cfe2002-11-18 00:14:45 +000035
36 .org 0xf
37 nop