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

📄 mmds-mmevs_linker.prm

📁 基于摩托罗拉(现在飞思卡尔)MC68HC908AZ60A系列单片机
💻 PRM
字号:
/* This is a linker parameter file for the AZ60 */
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. */
  Z_RAM  = READ_WRITE 0x0050 TO 0x00FF; 
  RAM1   = READ_WRITE 0x0100 TO 0x044F;
  RAM2   = READ_WRITE 0x0A00 TO 0x0DFF;
  ROM    = READ_ONLY  0x0E00 TO 0xFDFF;
  EEPROM = READ_ONLY  0x0600 TO 0x09FF; 
END

PLACEMENT /* here all predefined and user segments are placed into the SECTIONS defined above. */
  DEFAULT_ROM                   INTO ROM;
  DEFAULT_RAM                   INTO RAM1, RAM2;
  _DATA_ZEROPAGE, MY_ZEROPAGE   INTO Z_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 */


VECTOR  17     CAN_Receive
VECTOR  4     TimerInterrupt

⌨️ 快捷键说明

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