?? sect_mw.map
字號:
/*---------------------------------------------------------------------------
| Specify memory regions
*-------------------------------------------------------------------------*/
MEMORY {
RAM: ORIGIN = 0x00100000 LENGTH = 127M
}
/*---------------------------------------------------------------------------
| Specify group order within text section
*-------------------------------------------------------------------------*/
SECTIONS {
GROUP : {
.text : {}
.rodata : {}
.init? : {}
.tls? : {}
.fini? : {}
.initdat : {}
} > RAM
}
/*---------------------------------------------------------------------------
| Specify group order within data section
*-------------------------------------------------------------------------*/
SECTIONS {
GROUP : {
.data : {}
.sbss ALIGN(16) : {}
.bss ALIGN(16) : {}
.stack (BSS) ALIGN(8) BLOCK(8):
{
// Use this space as the stack at startup.
___s1 = .;
* (.stack)
___s2 = .;
// Make the stack at least 8K
. += (___s2 - ___s1 < 8K) ? (8K - (___s2 - ___s1)) : 0;
}
} > RAM
}
__STACK_TOP = ADDR(.stack) + SIZEOF(.stack);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -