代码搜索结果
找到约 57,103 项符合
Flash 的代码
flash.ld
MEMORY {
flash : ORIGIN = 0xffe20000, LENGTH = 0x00004000
ram : ORIGIN = 0x30010000, LENGTH = 0x00010000
}
SECTIONS {
.text : {
_stext = . ;
*(.text)
*(.rodata)
_
flash.ld
MEMORY {
flash : ORIGIN = 0xfff00000, LENGTH = 0x00100000 /* 1MB of flash (A[20] pulled high) */
ram : ORIGIN = 0x00020000, LENGTH = 0x00040000 /* 256Kbytes of sdram */
}
SECTIONS {
.
flash.ld
MEMORY {
flash : ORIGIN = 0xffe00000, LENGTH = 0x00004000
ram : ORIGIN = 0x003c0000, LENGTH = 0x00040000 /* last 256Kbytes of sdram */
}
SECTIONS {
.text : {
_stext = . ;
*(
flash.ld
MEMORY {
flash : ORIGIN = 0xf0000000, LENGTH = 0x00004000
ram : ORIGIN = 0x00300000, LENGTH = 0x00100000
}
SECTIONS {
.text : {
_stext = . ;
*(.text)
*(.rodata)
_etext = . ;
flash.ld
MEMORY {
flash : ORIGIN = 0xf0000000, LENGTH = 0x00018000
ram : ORIGIN = 0x003c0000, LENGTH = 0x00040000 /* last 256Kbytes of sdram */
}
SECTIONS {
.text : {
_stext = . ;
*(
flash.ld
MEMORY {
flash : ORIGIN = 0xf0000000, LENGTH = 0x00004000
ram : ORIGIN = 0x003c0000, LENGTH = 0x00040000 /* last 256Kbytes of sdram */
}
SECTIONS {
.text : {
_stext = . ;
*(
flash.ld
MEMORY {
flash : ORIGIN = 0xf0000000, LENGTH = 0x0000c000
ram : ORIGIN = 0x003c0000, LENGTH = 0x00040000 /* last 256Kbytes of sdram */
}
SECTIONS {
.text : {
_stext = . ;
*(
flash.ld
MEMORY {
flash : ORIGIN = 0x10c00000, LENGTH = 0x00010000
ram : ORIGIN = 0x007c0000, LENGTH = 0x00040000 /* last 256Kbytes of sdram */
}
SECTIONS {
.text : {
_stext = . ;
*(
flash.c
/* $Id: flash.c,v 1.25 2001/12/21 04:56:16 davem Exp $
* flash.c: Allow mmap access to the OBP Flash, for OBP updates.
*
* Copyright (C) 1997 Eddie C. Dost (ecd@skynet.be)
*/
#include
flash.c
#ifdef lint
static char *sccsid = "@(#)flash.c 4.1 (ULTRIX) 7/2/90";
#endif lint
#include "curses.ext"
extern int _outch();
flash()
{
#ifdef DEBUG
if(outf) fprintf(outf, "flash().\n");
#endif