2002-11-18 00:14:45 +00:00
|
|
|
/*
|
2011-04-13 09:43:28 +00:00
|
|
|
* U-boot - x86 Startup Code
|
2002-11-18 00:14:45 +00:00
|
|
|
*
|
2011-04-13 09:43:26 +00:00
|
|
|
* (C) Copyright 2002
|
2011-08-04 16:45:45 +00:00
|
|
|
* Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
|
2002-11-18 00:14:45 +00:00
|
|
|
*
|
|
|
|
* See file CREDITS for list of people who contributed to this
|
|
|
|
* project.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Reset vector, jumps to start16.S */
|
|
|
|
|
|
|
|
.extern start16
|
|
|
|
|
2008-12-06 23:28:58 +00:00
|
|
|
.section .resetvec, "ax"
|
2002-11-18 00:14:45 +00:00
|
|
|
.code16
|
2003-06-27 21:31:46 +00:00
|
|
|
reset_vector:
|
|
|
|
cli
|
|
|
|
cld
|
|
|
|
jmp start16
|
2002-11-18 00:14:45 +00:00
|
|
|
|
|
|
|
.org 0xf
|
|
|
|
nop
|