1    /* --COPYRIGHT--,EPL
     2     *  Copyright (c) 2009 by 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     *  ======== MSP430F2274.xdc ========
    15     *
    16     */
    17    package ti.catalog.msp430;
    18    
    19    /*!
    20     *  ======== MSP430F2274 ========
    21     *  MSP430F2274 Cpu definition
    22     *
    23     *  This device has 32KB + 256B of Flash Memory and 1KB RAM.  The
    24     *  MSP430F2274 has two op-amps (OA).
    25     */
    26    metaonly module MSP430F2274 inherits IMSP430x22xx
    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:       0x200,
    40                len:        0x400,
    41                space:      "code/data",
    42                access:     "RWX"
    43            }],
    44    
    45            ["FLASH", {
    46                comment:    "Program FLASH",
    47                name:       "FLASH",
    48                base:       0x8000,
    49                len:        0x7FDE,
    50                space:      "code",
    51                access:     "RWX"
    52            }],
    53        ];
    54    };