5409rom.cmd
来自「tms320c5409启动代码」· CMD 代码 · 共 37 行
CMD
37 行
/********************************************************************** * Texas Instruments Incorporated (1999) * This linker command file generates the C5409 ROM. * *********************************************************************/-a /* executable, but not relinkable */-o c5409rom.x54-m c5409rom.map/********************************************************************** * MEMORY * * C5409 ROM memory map *********************************************************************/MEMORY { /* BOOTLOADER ROM */ PAGE 0: ROMB: origin = 0xf800, len = 0x0400 PAGE 0: ROMv: origin = 0xff00, len = 0x080 PAGE 0: ROMv2: origin = 0xff80, len = 0x080
}/********************************************************************** * BOOTLOADER * * NOTE: This is the C5409 bootloader. *********************************************************************/SECTIONS { bootload : { ./boot5409.o54} > ROMB PAGE 0
.spi : { ./spi.o54} > ROMB PAGE 0
vects : { ./isptab.o54} > ROMv2 PAGE 0 }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?