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

📄 p&e_fcs_linker.prm

📁 在飞思卡尔MC9S08GB60单片机环境下实现了无线监控
💻 PRM
字号:
/* This is a linker parameter file for the GB60 */
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 0x0080 TO 0x00FF;
  RAM       = READ_WRITE 0x0100 TO 0x107F;
  ROM       = READ_ONLY  0x182C TO 0xFEFF;
  ROM2      = READ_ONLY  0x1080 TO 0x17FF;
//OSVECTORS = READ_ONLY  0xFFCC TO 0xFFFF;  /* OSEK interrupt vectors (use your vector.o) */  
END

PLACEMENT /* here all predefined and user segments are placed into the SEGMENTS defined above. */
//.ostext,                                      /* OSEK */
  DEFAULT_ROM                   INTO ROM/*, ROM2*/; /* in case you want to use ROM2 here as well, add option -OnB=b to the compiler. */
  DEFAULT_RAM                   INTO RAM;
  _DATA_ZEROPAGE, MY_ZEROPAGE   INTO Z_RAM;
//VECTORS_DATA                  INTO OSVECTORS; /* OSEK */
END

ENTRIES /* keep the following unreferenced variables */
//_vectab OsBuildNumber /* OSEK */
END

STACKSIZE 0x50

VECTOR 0 _Startup /* reset vector: this is the default entry point for a C/C++ application. */
VECTOR ADDRESS 0xFFDC VScirx
VECTOR ADDRESS 0xFFDA VScitx
VECTOR ADDRESS 0xFFD6 SCI2
VECTOR ADDRESS 0xFFEE VTimer1
VECTOR ADDRESS 0xFFE2 Timer2OF_ISR

//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 initialization entry point */

⌨️ 快捷键说明

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