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

📄 project.prm

📁 Freescale Code Warrior中C的编程
💻 PRM
字号:
/* This is a linker parameter file for the QG4 */

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

ENTRIES  /* Links Unused Objects */
  main
  CopyCode
  //*
END




SEGMENTS /* Here all RAM/ROM areas of the device are listed. Used in PLACEMENT below. */
    ROM   =  READ_ONLY    0xF000 TO 0xF2FF FILL 0x82;
    ROM2  =  READ_ONLY    0xF300 TO 0xFFAD RELOCATE_TO 0x100;
    Z_RAM =  READ_WRITE   0x0060 TO 0x00FF;
    RAM   =  READ_WRITE   0x0100 TO 0x015F;
    ROM1  =  READ_ONLY    0xFFC0 TO 0xFFCF;
END


PLACEMENT /* Here all predefined and user segments are placed into the SEGMENTS defined above. */
    DEFAULT_RAM                         INTO  RAM;
    RELOCATABLE                         INTO  ROM2;
    DEFAULT_ROM, ROM_VAR, STRINGS       INTO  ROM; /* ROM1 In case you want to use ROM1 as well, be sure the option -OnB=b is passed to the compiler. */
    _DATA_ZEROPAGE, MY_ZEROPAGE         INTO  Z_RAM;
END

CHECKSUM
      /* DEFAULT_ROM Checksum*/
    CHECKSUM_ENTRY
        METHOD_XOR
        OF      READ_ONLY   0xF300 TO 0xF308
        INTO    READ_ONLY   0xF309 SIZE 1
        UNDEFINED 0xff 
    END

END

STACKSIZE 0x30

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

⌨️ 快捷键说明

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