1    /*
     2     *  Copyright (c) 2011 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     *  ======== TNETV107X.xdc ========
    15     *
    16     */
    17    
    18    metaonly module TNETV107X inherits ti.catalog.ICpuDataSheet
    19    {
    20    instance:
    21        override config string cpuCore           = "Arm11";
    22        override config string isa               = "v6";
    23        override config string cpuCoreRevision   = "1.0";
    24        override config int    minProgUnitSize   = 1;
    25        override config int    minDataUnitSize   = 1;
    26        override config int    dataWordSize      = 4;
    27    
    28        config xdc.platform.IPlatform.Memory memMap[string] = [
    29            ["SRAM", {
    30                comment:    "On-Chip SRAM",
    31                name:       "SRAM",
    32                base:       0x20000000,
    33                len:        0x00010000,
    34                space:      "code/data",
    35                access:     "RWX"
    36            }],
    37        ];
    38    }
    39    
    40    /*
    41     *  @(#) ti.catalog.arm; 1, 0, 1,252; 6-15-2011 13:43:44; /db/ztree/library/trees/platform/platform-m22x/src/
    42     */
    43