1    /* 
     2     *  Copyright (c) 2008 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     *  ======== MSP430F5438.xdc ========
    15     *
    16     */
    17    package ti.catalog.c430;
    18    
    19    /*!
    20     *  ======== MSP430F5438 ========
    21     *  The F5438 device data sheet module.
    22     *
    23     *  This module implements the xdc.platform.ICpuDataSheet interface and is 
    24     *  used by platforms to obtain "data sheet" information about this device.
    25     */
    26    metaonly module MSP430F5438 inherits IMSP430
    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            ["RAM", {
    37                comment:    "Data RAM",
    38                name:       "RAM",
    39                base:       0x1C00,
    40                len:        0x4000,
    41                space:      "code/data",
    42                access:     "RWX"
    43            }],
    44    
    45            ["FLASH", {
    46                comment:    "Program FLASH",
    47                name:       "FLASH",
    48                base:       0x5C00,
    49                len:        0xA380,
    50                space:      "code",
    51                access:     "RWX"
    52            }],
    53    
    54            ["RESET", {
    55                comment: "Reset Vector",
    56                name: "RESET",
    57                base: 0xFFFE,
    58                len: 0x0002,
    59                space: "data"
    60            }],
    61    
    62            ["XFLASH", {
    63                comment:    "Extended Program FLASH",
    64                name:       "XFLASH",
    65                base:       0x10000,
    66                len:        0x35C00,
    67                space:      "code",
    68                access:     "RWX"
    69            }],
    70    
    71        ];
    72    };
    73    /*
    74     *  @(#) ti.catalog.c430; 1, 0, 0,201; 10-7-2009 15:39:46; /db/ztree/library/trees/platform-k22x/src/
    75     */
    76