]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/x86/cpu/resetvec.S
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / arch / x86 / cpu / resetvec.S
CommitLineData
2262cfee 1/*
fea25720 2 * U-boot - x86 Startup Code
2262cfee 3 *
dbf7115a 4 * (C) Copyright 2002
fa82f871 5 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
2262cfee 6 *
1a459660 7 * SPDX-License-Identifier: GPL-2.0+
2262cfee
WD
8 */
9
10/* Reset vector, jumps to start16.S */
11
12.extern start16
13
85ffbbd5 14.section .resetvec, "ax"
2262cfee 15.code16
8bde7f77
WD
16reset_vector:
17 cli
18 cld
19 jmp start16
2262cfee
WD
20
21 .org 0xf
22 nop