1    /*
     2     *  Copyright 2009 by Texas Instruments Incorporated.
     3     *
     4     *  All rights reserved. Property of Texas Instruments Incorporated.
     5     *  Restricted rights to use, duplicate or disclose this code are
     6     *  granted through contract.
     7     *
     8     */
     9    
    10    /*
    11     *  ======== Platform.xdc ========
    12     *
    13     */
    14    
    15    /*!
    16     *  ======== Platform ========
    17     *  Platform support for the simTCI6498
    18     */
    19    metaonly module Platform inherits xdc.platform.IPlatform
    20    {
    21        readonly config xdc.platform.IPlatform.Board BOARD = {      
    22            id:             "0",
    23            boardName:      "simTCI6498",
    24            boardFamily:    "simTCI6498",
    25            boardRevision:  null,
    26        };
    27            
    28        readonly config xdc.platform.IExeContext.Cpu CPU = {        
    29            id:             "0",
    30            clockRate:      1000,
    31            catalogName:    "ti.catalog.c6000",
    32            deviceName:     "TMS320CTCI6498",
    33            revision:       "1.0",
    34        };
    35        
    36    instance:
    37    
    38        override config string codeMemory  = "L2SRAM";
    39        override config string dataMemory  = "L2SRAM";
    40        override config string stackMemory = "L2SRAM";
    41    };
    42    /*
    43     *  @(#) ti.platforms.simTCI6498; 1, 0, 0, 0,21; 6-4-2009 14:26:00; /db/ztree/library/trees/platform-k10x/src/
    44     */
    45