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     *  ======== MSP430F5419.xdc ========
    15     *
    16     */
    17    
    18    /*!
    19     *  ======== MSP430F5419 ========
    20     *  MSP430F5419 CPU definition
    21     */
    22    metaonly module MSP430F5419 inherits IMSP430F54xx
    23    {
    24    instance:
    25        override config string   cpuCoreRevision = "1.0";
    26    
    27        /*!
    28         *  ======== memMap ========
    29         *  The default memory map for this device
    30         */
    31        config xdc.platform.IPlatform.Memory memMap[string]  = [
    32    
    33            ["RAM", {
    34                comment:    "Data RAM",
    35                name:       "RAM",
    36                base:       0x1C00,
    37                len:        0x4000,
    38                space:      "code/data",
    39                access:     "RWX"
    40            }],
    41    
    42            ["FLASH", {
    43                comment:    "Program FLASH",
    44                name:       "FLASH",
    45                base:       0x5C00,
    46                len:        0xA380,
    47                space:      "code",
    48                access:     "RWX"
    49            }],
    50    
    51            ["FLASH2", {
    52                comment:    "Extended Program FLASH",
    53                name:       "FLASH2",
    54                base:       0x10000,
    55                len:        0x15C00,
    56                space:      "code",
    57                access:     "RWX"
    58            }],
    59    
    60        ];
    61    };
    62    /*
    63     *  @(#) ti.catalog.msp430.f54xx; 1, 0, 0,; 12-4-2015 21:40:09; /db/ztree/library/trees/platform/platform-q16/src/
    64     */
    65