avionic design with actual uboot and tooling
submodule of avionic design uboot bootloader and with included tools to get you started , read readme.md and readme-tk1-loader.md
This commit is contained in:
22
u-boot/arch/x86/cpu/resetvec.S
Normal file
22
u-boot/arch/x86/cpu/resetvec.S
Normal file
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
* U-Boot - x86 Startup Code
|
||||
*
|
||||
* (C) Copyright 2002
|
||||
* Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0+
|
||||
*/
|
||||
|
||||
/* Reset vector, jumps to start16.S */
|
||||
|
||||
.extern start16
|
||||
|
||||
.section .resetvec, "ax"
|
||||
.code16
|
||||
reset_vector:
|
||||
cli
|
||||
cld
|
||||
jmp start16
|
||||
|
||||
.org 0xf
|
||||
nop
|
||||
Reference in New Issue
Block a user