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