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     *  ======== Tesla.xdc ========
    12     *
    13     */
    14    package ti.catalog.c6000.nda;
    15    
    16    /*!
    17     *  ======== Tesla ========
    18     *  The C64T device data sheet module.
    19     */
    20    metaonly module Tesla inherits ti.catalog.ICpuDataSheet
    21    {
    22    
    23    instance:
    24        override config int     minProgUnitSize = 1;
    25        override config int     minDataUnitSize = 1;    
    26        override config int     dataWordSize    = 4;
    27    
    28        override config string   cpuCore         = "Tesla";
    29        override config string   isa             = "64T";
    30        override config string   cpuCoreRevision = "1.0";
    31    
    32        config xdc.platform.IPlatform.Memory memMap[string]  = [
    33            
    34            ["L2SRAM", {
    35                comment:    "Shared 256KB SRAM",
    36                name:       "L2SRAM",
    37                base:       0x10900000,
    38                len:        0x00040000,
    39                space:      "code/data",
    40                access:     "RWX"
    41            }],
    42        ];
    43    };
    44    /*
    45     *  @(#) ti.catalog.c6000.nda; 1, 0, 0, 0,80; 6-4-2009 14:20:24; /db/ztree/library/trees/platform-k10x/src/
    46     */
    47