project.prm

来自「freescale hc08 T6963 160*80 LCD驱动」· PRM 代码 · 共 22 行

PRM
22
字号
/* This is a linker parameter file for the GZ32 */

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. */
    ROM                      =  READ_ONLY    0x8000 TO 0xFDFF;
    Z_RAM                    =  READ_WRITE   0x0040 TO 0x00FF;
    RAM                      =  READ_WRITE   0x0100 TO 0x043F;
    RAM1                     =  READ_WRITE   0x0580 TO 0x077F;
END

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


STACKSIZE 0x50

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

⌨️ 快捷键说明

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