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 qtTesla
    18     */
    19    metaonly module Platform inherits xdc.platform.IPlatform
    20    {
    21        readonly config xdc.platform.IPlatform.Board BOARD = {      
    22            id:             "0",
    23            boardName:      "qtTesla",
    24            boardFamily:    "qtTesla",
    25            boardRevision:  null,
    26        };
    27            
    28        readonly config xdc.platform.IExeContext.Cpu CPU = {        
    29            id:             "0",
    30            clockRate:      466,
    31            catalogName:    "ti.catalog.c6000.nda",
    32            deviceName:     "Tesla",
    33            revision:       "",
    34        };
    35        
    36    instance:
    37    
    38        override config string codeMemory = "L2SRAM";
    39        
    40        override config string dataMemory = "L2SRAM";
    41    
    42        override config string stackMemory = "L2SRAM";
    43    };
    44    /*
    45     *  @(#) ti.platforms.qtTesla; 1, 0, 0, 0,56; 6-4-2009 14:25:12; /db/ztree/library/trees/platform-k10x/src/
    46     */
    47