1    /* --COPYRIGHT--,EPL
     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     * --/COPYRIGHT--*/
    12    
    13    /*
    14     *  ======== MSP430F5529.xdc ========
    15     *
    16     *! Revision History
    17     *! ================
    18     *! 01-Mar-2010 sg        Created.
    19     */
    20    
    21    /*!
    22     *  ======== MSP430F5529 ========
    23     *  MSP430F5529 CPU definition
    24     */
    25    metaonly module MSP430F5529 inherits IMSP430F55xx
    26    {
    27    instance:
    28        override config string   cpuCoreRevision = "1.0";
    29    
    30        /*!
    31         *  ======== memMap ========
    32         *  The default memory map for this device
    33         */
    34        config xdc.platform.IPlatform.Memory memMap[string]  = [
    35    
    36            ["RAM", {
    37                comment:    "Data RAM",
    38                name:       "RAM",
    39                base:       0x2400,
    40                len:        0x2000,
    41                space:      "code/data",
    42                access:     "RWX"
    43            }],
    44    
    45            ["FLASH", {
    46                comment:    "Program FLASH",
    47                name:       "FLASH",
    48                base:       0x4400,
    49                len:        0xBB80,
    50                space:      "code",
    51                access:     "RWX"
    52            }],
    53    
    54            ["FLASH2", {
    55                comment:    "Extended Program FLASH",
    56                name:       "FLASH2",
    57                base:       0x10000,
    58                len:        0x14400,
    59                space:      "code",
    60                access:     "RWX"
    61            }],
    62    
    63        ];
    64    };