📄 nandboot.cmd
字号:
/****************************************************************************/
/* lnk.cmd v##### */
/* Copyright (c) 1996@%%%% Texas Instruments Incorporated */
/* Usage: lnk6x <obj files...> -o <out file> -m <map file> lnk.cmd */
/* cl6x <src files...> -z -o <out file> -m <map file> lnk.cmd */
/* */
/* Description: This file is a sample linker command file that can be */
/* used for linking programs built with the C compiler and */
/* running the resulting .out file on a C620x/C670x */
/* simulator. Use it as a guideline. You will want to */
/* change the memory layout to match your specific C6xxx */
/* target system. You may want to change the allocation */
/* scheme according to the size of your program. */
/* */
/* Notes: (1) You must specivy a directory in which rts6x00.lib is */
/* located. either add a -i"<directory>" line to this */
/* file or use the system environment variable C_DIR to */
/* specify a search path for the libraries. */
/* */
/* (2) If the run-time library you are using is not named */
/* rts6200[e].lib, rts6400[e].lib, or rts6700[e].lib, be */
/* sure to use the correct name here. */
/* */
/****************************************************************************/
/* Memory Map 1 - the default */
MEMORY
{
BOOTRAM: o = 10810000h l = 0000B800h
}
SECTIONS
{
.text > BOOTRAM
.cinit > BOOTRAM
.const > BOOTRAM
.data > BOOTRAM
.switch > BOOTRAM
.stack > BOOTRAM
.bss > BOOTRAM
.cio > BOOTRAM
.sysmem > BOOTRAM
.far > BOOTRAM
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -