?? shlelf.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 + -