sections.svn-base
来自「德国Erlangen大学教学操作系统源码。」· SVN-BASE 代码 · 共 52 行
SVN-BASE
52 行
/* $Id: sections,v 1.3 2003/11/12 15:18:07 olaf Exp $ */SECTIONS { . = 0x10000; /* Startadresse des Systems */ .text : { *(".text") *(".text$") *(".init") *(".fini") *(".gnu.linkonce.*") } .data : { *(".data") *(".data$") *(".rodata") ___CTOR_LIST__ = .; *(".ctors") *(".ctor") ___CTOR_LIST_END__ = .; ___DTOR_LIST__ = .; *(".dtors") *(".dtor") ___DTOR_LIST_END__ = .; *(".got") *(".got.plt") *(".eh_frame") *(".eh_fram") *(".jcr") } .bss : { *(".bss") }/* /DISCARD/ : { *(".note") *(".comment") *(".debug_line") *(".debug_info") *(".debug_abbrev") *(".debug_aranges") }*/ }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?