📄 vmkernel.lds
字号:
/* .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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -