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     *  ======== MSP430F5418.xdc ========
    15     *
    16     *! Revision History
    17     *! ================
    18     *! 02-Nov-2009 sg      Created.
    19     */
    20    package ti.catalog.msp430;
    21    
    22    /*!
    23     *  ======== MSP430F5418 ========
    24     *  MSP430F5418 CPU definition
    25     */
    26    metaonly module MSP430F5418 inherits IMSP430F54xx
    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    
    37            ["RAM", {
    38                comment:    "Data RAM",
    39                name:       "RAM",
    40                base:       0x1C00,
    41                len:        0x4000,
    42                space:      "code/data",
    43                access:     "RWX"
    44            }],
    45    
    46            ["FLASH", {
    47                comment:    "Program FLASH",
    48                name:       "FLASH",
    49                base:       0x5C00,
    50                len:        0xA380,
    51                space:      "code",
    52                access:     "RWX"
    53            }],
    54    
    55            ["FLASH2", {
    56                comment:    "Extended Program FLASH",
    57                name:       "FLASH2",
    58                base:       0x10000,
    59                len:        0x15C00,
    60                space:      "code",
    61                access:     "RWX"
    62            }],
    63    
    64        ];
    65    };