shlelf.ld
来自「嵌入式系统开发 TOPPERS and JSP Kernel Release 」· LD 代码 · 共 51 行
LD
51 行
/* * @(#) $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 + =
减小字号Ctrl + -
显示快捷键?