vmkernel.lds

来自「linux device driver example」· LDS 代码 · 共 28 行

LDS
28
字号
/* .bss section is a section with no contents. However, an area in memory   should be set aside and zero-inited for it    __bss_start and _end will be used in main.c to initialize .bss section*/ENTRY(startup_32)SECTIONS {	. = 0x00200000;	.text : {		*(.text)	}	.rodata : {		*(.rodata)	}	.data : {		*(.data)	}	.bss : {		__bss_start = .;		*(.bss)	}	_end = .;	}

⌨️ 快捷键说明

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