~pmdj/ubuntu/trusty/qemu/2.9+applesmc+fadtv3

« back to all changes in this revision

Viewing changes to roms/u-boot/arch/x86/cpu/resetvec.S

  • Committer: Phil Dennis-Jordan
  • Date: 2017-07-21 08:03:43 UTC
  • mfrom: (1.1.1)
  • Revision ID: phil@philjordan.eu-20170721080343-2yr2vdj7713czahv
New upstream release 2.9.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  U-boot - x86 Startup Code
 
3
 *
 
4
 * (C) Copyright 2002
 
5
 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
 
6
 *
 
7
 * SPDX-License-Identifier:     GPL-2.0+
 
8
 */
 
9
 
 
10
/* Reset vector, jumps to start16.S */
 
11
 
 
12
.extern start16
 
13
 
 
14
.section .resetvec, "ax"
 
15
.code16
 
16
reset_vector:
 
17
        cli
 
18
        cld
 
19
        jmp start16
 
20
 
 
21
        .org 0xf
 
22
        nop