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     *  ======== IAntara.xdc ========
    12     *
    13     */
    14    package ti.catalog.c6000;
    15    
    16    /*!
    17     *  ======== IAntara ========
    18     *  The Antara device data sheet module.
    19     *
    20     *  This module implements the xdc.platform.ICpuDataSheet interface and is 
    21     *  used by platforms to obtain "data sheet" information about this device.
    22     */
    23    metaonly interface IAntara inherits ti.catalog.ICpuDataSheet
    24    {
    25    instance:
    26        override config int     minProgUnitSize = 1;
    27        override config int     minDataUnitSize = 1;    
    28        override config int     dataWordSize    = 4;
    29    
    30        override config string   cpuCore        = "67x+";
    31        override config string   isa = "67P";
    32        override config string   cpuCoreRevision = "1.0";
    33    
    34        config xdc.platform.IPlatform.Memory memMap[string]  = [
    35            ["IRAM", {
    36                name:       "IRAM",
    37                comment:    "Internal memory",
    38                base:       0x10000000,
    39                len:        0x00040000,
    40                space:      "code/data",
    41                access:     "RWX"
    42            }],
    43        ];
    44    };
    45    /*
    46     *  @(#) ti.catalog.c6000; 1, 0, 0, 0,173; 6-4-2009 14:07:51; /db/ztree/library/trees/platform-k10x/src/
    47     */
    48