Home | History | Annotate | Download | only in cpu
      1 /* SPDX-License-Identifier: GPL-2.0+ */
      2 /*
      3  *  U-Boot - x86 Startup Code
      4  *
      5  * (C) Copyright 2002
      6  * Daniel Engstrm, Omicron Ceti AB, <daniel (at) 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
     22