1    /*
     2     *  Copyright (c) 2009 by Texas Instruments and others.
     3     *  All rights reserved. This program and the accompanying materials
     4     *  are made available under the terms of the Eclipse Public License v1.0
     5     *  which accompanies this distribution, and is available at
     6     *  http://www.eclipse.org/legal/epl-v10.html
     7     *
     8     *  Contributors:
     9     *      Texas Instruments - initial implementation
    10     *
    11     * */
    12    
    13    /*
    14     *  ======== Platform.xdc ========
    15     *
    16     */
    17    
    18    /*!
    19     *  ======== Platform ========
    20     *  Platform support for the simTCI6498
    21     */
    22    metaonly module Platform inherits xdc.platform.IPlatform
    23    {
    24        readonly config xdc.platform.IPlatform.Board BOARD = {      
    25            id:             "0",
    26            boardName:      "simTCI6498",
    27            boardFamily:    "simTCI6498",
    28            boardRevision:  null,
    29        };
    30            
    31        readonly config xdc.platform.IExeContext.Cpu CPU = {        
    32            id:             "0",
    33            clockRate:      1000,
    34            catalogName:    "ti.catalog.c6000",
    35            deviceName:     "TMS320CTCI6498",
    36            revision:       "1.0",
    37        };
    38        
    39    instance:
    40    
    41        override config string codeMemory  = "L2SRAM";
    42        override config string dataMemory  = "L2SRAM";
    43        override config string stackMemory = "L2SRAM";
    44    };
    45    /*
    46     *  @(#) ti.platforms.simTCI6498; 1, 0, 0, 0,39; 11-19-2009 19:33:44; /db/ztree/library/trees/platform/platform-k26x/src/
    47     */
    48