c240mnrt1.cmd
来自「DSP240 用的程序 电机及基本的 希望有用的朋友」· CMD 代码 · 共 80 行
CMD
80 行
/*H***************************************************************************
* TI Proprietary Information - Internal Data
* Copyright (c) 1993-1999, Texas Instruments Incorporated
* All rights reserved
*****************************************************************************/
/***************************************************************************
*
* DESCRIPTION:
*
* Truely boring linker command file
* for C25LP HLL Real-Time Debugger.
*
* This real-time monitor was developed by H.Roland Hoar.
*
* STATUS:
*
* This monitor version is dated 24th of June 1997.
* It is intended for use with HLL Debugger versions "1.19" or later.
* The MON_RELEASE mnemonic has the hexadecimal value '1019'.
*
* This document has page feed characters spaced for 66 lines per page.
* Its page alignment is adjusted to ensure
* attractive two-page-per-sheet printing.
*
***************************************************************************/
/**************************************************************************/
/******** Specify the linker options **************************************/
/**************************************************************************/
/*-o c240mnrt.out
-m c240mnrt.map
*/
/**************************************************************************/
/******** Specify the input files *****************************************/
/**************************************************************************/
-c
zd3.obj
/**************************************************************************/
/******** Specify the memory configuration ********************************/
/**************************************************************************/
MEMORY
{
PAGE 0: VECS: origin = 00000h, length = 00040h
LOW: origin = 00040h, length = 03FC0h
SARAM: origin = 04000h, length = 00800h
B0: origin = 0FF00h, length = 00100h
PAGE 1: B0: origin = 00200h, length = 00100h
B1: origin = 00300h, length = 00100h
B2: origin = 00060h, length = 00020h
SARAM: origin = 08000h, length = 00800h
}
/**************************************************************************/
/******** Specify the ouput sections **************************************/
/**************************************************************************/
SECTIONS
{
/* Output sections for the sample code */
/* in "c200vecs.asm" and "c240user.asm". */
vectors : { } > VECS PAGE 0
text : { } > LOW PAGE 0
data : { } > B1 PAGE 1
/* Output sections for the monitor code. */
/* These are always required. */
mon_main : { } > LOW PAGE 0
mon_pge0 : { } > B2 PAGE 1
mon_rgst : { } > B2 PAGE 1
/* Output sections for the monitor code. */
/* Either mon_ioio or mon_b0p0/mon_b0p1 */
/* may be required, but never both. */
mon_ioio : { } > LOW PAGE 0
mon_b0p0 : { } > B0 PAGE 0
mon_b0p1 : { } > B0 PAGE 1
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?