]> git.sur5r.net Git - u-boot/blob - arch/x86/cpu/resetvec.S
Merge branch 'master' of git://git.denx.de/u-boot-sunxi
[u-boot] / arch / x86 / cpu / resetvec.S
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  *  U-Boot - x86 Startup Code
4  *
5  * (C) Copyright 2002
6  * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
7  */
8
9 /* Reset vector, jumps to start16.S */
10
11 .extern start16
12
13 .section .resetvec, "ax"
14 .code16
15 reset_vector:
16         cli
17         cld
18         jmp start16
19
20         .org 0xf
21         nop