⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 s08aw60.prm

📁 LIN Driver for S08, LIN 1.3. Source code with codewarrior
💻 PRM
字号:
/* 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -