代码搜索:linker
找到约 10,000 项符合「linker」的源代码
代码结果 10,000
www.eeworm.com/read/472997/6853649
linker
www.eeworm.com/read/192521/8376942
cmd linker.cmd
-heap 0x4000
-stack 0x4000
-x
MEMORY
{
ISRAMB : origin = 0x000, len = 0x0000800
ISRAM : origin = 0x800, len = 0x000038000
SDRAM1 : origin = 0x80000000
www.eeworm.com/read/187265/8837892
h linker.h
#ifndef _LINKER_H_
#define _LINKER_H_
//定义返回值
#define SUCCESS 1
#define DELETE_FAIL 0xE0
#define ALLOC_FAIL 0xE1
typedef struct tagNode{
int iValue;
tagNode *pNext;
}NODE,*PNODE;
www.eeworm.com/read/187265/8837901
cpp linker.cpp
#include "precomp.h"
int initList(PNODE* pListHead)
{
//
//创建一个头结点空间,并赋值为0
//
if ((*pListHead = (PNODE)malloc(sizeof(NODE))) == NULL)
{
return ALLOC_FAIL;
}
(*pListHead)->iValue
www.eeworm.com/read/169983/9827879
zip linker.zip
www.eeworm.com/read/168764/9898066
cfg linker.cfg
OUTPUT_FORMAT("elf32-littlearm", "elf32-bigarm",
"elf32-littlearm")
OUTPUT_ARCH(arm)
ENTRY(start)
SEARCH_DIR(/usr/local/arm/2.95.3/arm-linux/lib);
/* Do we need any of these for elf?
__DYNA
www.eeworm.com/read/363143/9966493
cmd linker.cmd
-heap 0x4000
-stack 0x4000
-x
/*
* Specify the sections of the process board memory.
*/
MEMORY
{
IPRAM (RWIX) : org = 0x00000000, len = 0x00010000
IDRAM (RWI) : org = 0x80
www.eeworm.com/read/280934/10279108
cmd linker.cmd
# Linker.cmd file for DSP56803EVM/DSP56805EVM
# using internal data memory only ( EX = 0, Boot Mode 0A )
#****************************************************************************
www.eeworm.com/read/355178/10288886
cmd linker.cmd
/*H***************************************************************************
*
* $Archive:: /boards/dsk6455/examples/led/led.c $
* $Revision:: 1
www.eeworm.com/read/355177/10288969
cmd linker.cmd
/*H***************************************************************************
*
* $Archive:: /boards/dsk6455/examples/led/led.c $
* $Revision:: 1