project.prm

来自「飞思卡尔 新型的单片机rs08的ICS_SW_Copy调试程序」· PRM 代码 · 共 23 行

PRM
23
字号
/* This is a linker parameter file for the MC9RS08KA2 */

NAMES END /* CodeWarrior will pass all the needed files to the linker by command line. But here you may add your own files too. */

SEGMENTS /* Here all RAM/ROM areas of the device are listed. Used in PLACEMENT below. */
    TINY_RAM                 =  READ_WRITE   0x0000 TO 0x000D;
    DIRECT_RAM               =  READ_WRITE   0x0020 TO 0x004F;
    ROM                      =  READ_ONLY    0x3800 TO 0x3FF7;
//  RESET_JMP_AREA           =  READ_ONLY    0x3FFD TO 0x3FFF; // area defined by RESET 0 below.
END

PLACEMENT /* Here all predefined and user segments are placed into the SEGMENTS defined above. */
    TINY_RAM_VARS            INTO TINY_RAM;
    DIRECT_RAM_VARS,
    DEFAULT_RAM              INTO DIRECT_RAM, TINY_RAM;
    DEFAULT_ROM              INTO ROM;
END


STACKSIZE 0x00 /* no stack for RS08 */

VECTOR 0 _Startup /* Reset vector: this is the default entry point for an application. */

⌨️ 快捷键说明

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