代码搜索结果
找到约 3,767 项符合
Bootloader 的代码
dsp_proj_data.h
//=========================================================================
// Filename: dsp_proj_data.h
//
// Description:
//
// DSP code to be initalized by the bootloader.
// This file
dsp_boot.s54
;=============================================================================
; Filename: dsp_boot.s54
; Description: This file contains the DSP bootloader.
;
; Copyright (C) 2000 - 2002 Texas
dsp_boot_code.h
//=========================================================================
// Filename: dsp_boot_code.h
//
// Description:
//
// DSP code to be initalized by the bootloader.
// This file
dsp_proj_code.h
//=========================================================================
// Filename: dsp_proj_code.h
//
// Description:
//
// DSP code to be initalized by the bootloader.
// This file
dsp_proj_data.h
//=========================================================================
// Filename: dsp_proj_data.h
//
// Description:
//
// DSP code to be initalized by the bootloader.
// This file
dsp_boot_code.h
//=========================================================================
// Filename: dsp_boot_code.h
//
// Description:
//
// DSP code to be initalized by the bootloader.
// This file
main.c
//=============================================================================
// Filename: main.c
//
// Description: A sample driver application for the bootloader.
//
// Copyright (C) 200
bootloader.lds
OUTPUT_FORMAT("elf64-ia64-little")
OUTPUT_ARCH(ia64)
ENTRY(_start)
SECTIONS
{
/* Read-only sections, merged into text segment: */
. = 0x100000;
_text = .;
.text : { *(__ivt_section) *(.text)
bootloader.lds
OUTPUT_FORMAT("elf64-alpha")
ENTRY(__start)
SECTIONS
{
. = 0x20000000;
.text : { *(.text) }
_etext = .;
PROVIDE (etext = .);
.rodata : { *(.rodata) *(.rodata.*) }
.data : { *(.data) CONSTR
head.s
/*
* arch/alpha/boot/head.S
*
* initial bootloader stuff..
*/
#include
.set noreorder
.globl __start
.ent __start
__start:
br $29,2f
2: ldgp $29,0($29)
jsr $26,start_kernel