⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 shlelf.ld

📁 嵌入式系统开发 TOPPERS and JSP Kernel Release 1.3 TOPPERS = Toyohashi Open Platform for Embedded Real-Tim
💻 LD
字号:
/* *  @(#) $Id: shlelf.ld,v 1.1 2000/11/14 16:29:53 honda Exp $ */OUTPUT_FORMAT("elf32-shl","elf32-shl","elf32-shl")OUTPUT_ARCH(sh)	PROVIDE(_hardware_init_hook = 0);PROVIDE(_software_init_hook = 0);SECTIONS{    .text :	    {        __text = . ; 	        *(.text)    }    _etext = .	;    PROVIDE (etext = .)	;    .rodata : { *(.rodata) }    . = ALIGN(4);    __idata_start = . ;    .data   :  AT(__idata_start)     {        __data_start = . ;        *(.data)    }    __idata_end = __idata_start + SIZEOF(.data);    _edata  =  . ;    PROVIDE (edata = .);    . = ALIGN(4);    __bss_start = .	;		    .bss       :    {      *(.bss)      *(COMMON)    }    _end = .		;    PROVIDE (end = .)	;    .comment 0 : { *(.comment) }	    .debug          0 : { *(.debug) }    .line           0 : { *(.line) }    .debug_srcinfo  0 : { *(.debug_srcinfo) }    .debug_sfnames  0 : { *(.debug_sfnames) }    .debug_aranges  0 : { *(.debug_aranges) }    .debug_pubnames 0 : { *(.debug_pubnames) }	}						

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -