s08aw60.prm

来自「LIN Driver for S08, LIN 1.3. Source code」· PRM 代码 · 共 26 行

PRM
26
字号
/* This is a linker parameter file for the MC9S08AW60 */

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. */
  Z_RAM        = READ_WRITE  0x0070 TO 0x00FF;
  RAM          = READ_WRITE  0x0100 TO 0x086F;
  ROM1         = READ_ONLY   0x0870 TO 0x17FF;
  ROM          = READ_ONLY   0x1860 TO 0xFFAF;
  NV_REG       = READ_ONLY   0xFFB0 TO 0xFFBF; // 16 bytes non-volatile register area
  VECTORS      = READ_ONLY   0xFFCC TO 0xFFFF; 

END

PLACEMENT /* here all predefined and user segments are placed into the SEGMENTS defined above. */
  DEFAULT_ROM                   INTO ROM;
  DEFAULT_RAM                   INTO RAM;
  _DATA_ZEROPAGE, ZeroSeg       INTO Z_RAM;
  VECTORS_DATA                  INTO VECTORS;  
END

STACKSIZE 0x50

ENTRIES
 _vectab
END

⌨️ 快捷键说明

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