代码搜索结果

找到约 4,828 项符合 Bootloader 的代码

bootloader.h

#ifndef _BOOTLOADER_H_ #define _BOOTLOADER_H_ #if (BOOTLOADER_SYSTEM) //----------- Configurations -------------- #undef BUILD_SYSDEBUG #define BUILD_SYSDEBUG 1 #undef WATCH_DOG

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.c

/* * arch/ia64/boot/bootloader.c * * Loads an ELF kernel. * * Copyright (C) 1998, 1999, 2001 Hewlett-Packard Co * Copyright (C) 1998, 1999, 2001 David Mosberger-Tang * Copyr

bootloader.lds

OUTPUT_FORMAT("elf64-alpha") ENTRY(__start) SECTIONS { . = 0x20000000; .text : { *(.text) } _etext = .; PROVIDE (etext = .); .rodata : { *(.rodata) *(.rodata.*) } .data : { *(.data) CONSTR

bootloader.c

/* Copyright (c) 2007 Nordic Semiconductor. All Rights Reserved. * * The information contained herein is property of Nordic Semiconductor ASA. * Terms and conditions of usage are described in de

bootloader.lst

C51 COMPILER V7.50 BOOTLOADER 03/05/2008 17:32:45 PAGE 1 C51 COMPILER V7.50, COMPILATION OF MODULE BOOTLOADER OBJECT MODULE PLACED

bootloader.h

/* Copyright (c) 2007 Nordic Semiconductor. All Rights Reserved. * * The information contained herein is property of Nordic Semiconductor ASA. * Terms and conditions of usage are described in de

bootloader.h

typedef struct Inter{ // data' address in sram or sdram unsigned int * address; // data's offset in dataflash unsigned int DFAddr; // data's size in sram or sdram unsigned int CSize