?? memmap.cmd
字號(hào):
/*
Memory mapping for the out file is critical for correct operation!
.vars section contains read address, write address, and image length in bytes
.image section sits at x010010000 or RAM size - 64 kB
*/
/* Code Space for FlashWriter is currently about 38 kBytes of RAM */
/* Memory map for putting code into external RAM */
MEMORY
{
SDRAM_FW (RWX) : origin = 0x10000000 length = 0x0000FFF0
SDRAM_VARS (RWX) : origin = 0x1000FFF0 length = 0x00000010
SDRAM_IMAGE : origin = 0x10010000 length = 0x01FF0000
}
SECTIONS
{
.mysect : > SDRAM_FW
.intvecs : > SDRAM_FW
.text : > SDRAM_FW
.data : > SDRAM_FW
.vars : > SDRAM_VARS
.image : > SDRAM_IMAGE
.bss : > SDRAM_FW
.stack : > SDRAM_FW
.const : > SDRAM_FW
.cinit : > SDRAM_FW
.sysmem : > SDRAM_FW
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -