p&e_fcs_linker.prm
来自「自己做的一个简单的设备.使用Freescale HC908SR12单片机,使用K」· PRM 代码 · 共 27 行
PRM
27 行
/* This is a linker parameter file for the SR12 */
NAMES END /* CodeWarrior will pass all the needed files to the linker by command line. But here you may add your own files too. */
SECTIONS /* here all RAM/ROM areas of the device are listed. Used in PLACEMENT below. */
F_RAM = READ_WRITE 0x0060 TO 0x0065;
Z_RAM = READ_WRITE 0x0066 TO 0x00FF;
RAM = READ_WRITE 0x0100 TO 0x01FF;
P_RAM = READ_WRITE 0x0200 TO 0x025F;
ROM = READ_ONLY 0xC500 TO 0xEFFF;
END
PLACEMENT /* here all predefined and user segments are placed into the SECTIONS defined above. */
DEFAULT_ROM INTO ROM;
DEFAULT_RAM INTO RAM;
_DATA_ZEROPAGE, MY_ZEROPAGE INTO Z_RAM;
FLASH_RAM INTO F_RAM;
END
STACKSIZE 0x50
VECTOR 0 _Startup /* reset vector: this is the default entry point for a C/C++ application. */
//VECTOR 0 Entry /* reset vector: this is the default entry point for a Assembly application. */
//INIT Entry /* for assembly applications: that this is as well the initialisation entry point */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?