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     *  ======== TMS470R10.xdc ========
    12     */
    13    package ti.catalog.arm;
    14    
    15    /*!
    16     *  ======== TMS470R10 ========
    17     *  The C470 device data sheet module.
    18     *
    19     *  This module implements the xdc.platform.ICpuDataSheet interface and is 
    20     *  used by platforms to obtain "data sheet" information about this device.
    21     *
    22     *  Warning: The data for this module comes from the linker command file 
    23     *  shipped with the TI 470 tools and does NOT come from any published data
    24     *  sheet.
    25     */
    26    metaonly module TMS470R10 inherits TMS470xx
    27    {
    28    instance:
    29        override config string   cpuCoreRevision = "1.0";
    30    
    31        /*!
    32         *  ======== memMap ========
    33         *  The default memory map for this device
    34         */
    35        config xdc.platform.IPlatform.Memory memMap[string]  = [
    36            ["P_MEM", {
    37                comment: "Program Memory (ROM)",
    38                name: "P_MEM",
    39                base: 0x00000000,
    40                len: 0x00030000,
    41                space: "code"
    42            }],
    43    
    44            ["D_MEM", {
    45                comment: "Data Memory (RAM)",
    46                name: "D_MEM", 
    47                base: 0x00030000,
    48                len: 0x00050000,
    49                space: "data"
    50            }],
    51        ];
    52    };
    53    /*
    54     *  @(#) ti.catalog.arm; 1, 0, 1, 0,63; 6-4-2009 14:07:30; /db/ztree/library/trees/platform-k10x/src/
    55     */
    56