link_bios_dsplib_rts_rom.cmd

来自「Using ROM Contents on TMS320C672x」· CMD 代码 · 共 74 行

CMD
74
字号
/* include the fastRTS lib */
-l ..\libs\fastrts67xR.lib
 
/* link the software system patch into the application */
/* required for proper device operation */
-l ..\libs\applySystemPatch.obj               
-l ..\libs\c672xSystemPatchV2_00_00.lib


/* link with the C67x+ rts library */
/* this is now included in BIOS */ 

/* include the rom version of the DSPlib */
-l ..\libs\c67xdsplibR.lib


MEMORY
{
    /* rom memory map */
    IROM_BOOT:       o = 00000000h   l = 00020000h 
    IROM_DSPLIB:     o = 00020000h   l = 0000C000h 
    IROM_FASTRTS:    o = 0002C000h   l = 00004000h
    IROM_BIOS:       o = 00030000h   l = 00030000h       

    /* ram memory map */
    /* reserved at boot for bootloader */
    IRAM_BOOT:       o = 10000000h   l = 00001000h

	/* internal ram available for user applications */
    IRAM_USER_LOW:   o = 10001000h   l = 00000B00h

    /* to be reserved if using the ROM version of fastRTS */
    IRAM_FASTRTS_RESERVED:   o = 10001B00h   l = 00000100h

	/* internal ram available for user applications */
    /* this now is defined inside DSP BIOS config */

}

SECTIONS
{
    /* used to locate the DSPlib in ROM */
    .dsplib  : > IROM_DSPLIB, type = NOLOAD

    /* used to locate the fast rts library in ROM */
    .fastRts  : > IROM_FASTRTS, type = NOLOAD 

	/* used to specify the fastrts bss section in RAM */
    .fastRtsbss :> IRAM_FASTRTS_RESERVED 

      
	/* all these sections are now being defined in BIOS config */
    /* C standard sections */ 
	/*
    .text    >    IRAM_USER
    .stack   >    IRAM_USER
    .far     >    IRAM_USER
    .switch  >    IRAM_USER
    .tables  >    IRAM_USER
    .data    >    IRAM_USER
    .bss     >    IRAM_USER
    .cinit   >    IRAM_USER
    .sysmem  >    IRAM_USER
    .const   >    IRAM_USER
    .cio     >    IRAM_USER
    .pinit   >    IRAM_USER
	*/
}

/* include the BIOS autogenerated linker command file */
-l simple_bioscfg.cmd


⌨️ 快捷键说明

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