?? tone.tcf.a01772
字號:
/*
* ======== tone.tcf ========
*
*! Revision History
*! ================
*! 20-May-2003 mw Created.
*
* To create tone.cdb:
*
* 1) Open a Windows command prompt window and cd to the root of your Code
* Composer installation directory (normally c:\ti). Type dosrun in the
* command prompt window to execute dosrun.bat which adds the Code
* Composer command line utilities to your automatic search path.
*
* 2) Modify the prog.load statement below to reflect the location of your
* Code Composer installation directory if it is not in c:\ti.
*
* 3) Execute the following command in your command prompt window:
*
* tconf tone.tcf
*/
/* Load 5502 seed file */
prog.load("c:/ti/c5500/bios/include/c5502.cdb");
/* Get program objects */
utils.getProgObjs(prog);
/* Set memory model to large mode */
GBL.MEMORYMODEL = "LARGE";
/* Disable Task Manager */
TSK.ENABLETSK = 0;
/* Disable memory heaps */
MEM.NOMEMORYHEAPS = 1;
/* Generate .cdb file */
prog.gen("tone");