blob: 77c44bd46154f8ff79f0b6178b6bdfd1134cec17 [file] [log] [blame]
/* --COPYRIGHT--,EPL
* Copyright (c) 2008 Texas Instruments and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Texas Instruments - initial implementation
*
* --/COPYRIGHT--*/
/*!
* ======== MSP430F227x.xdc ========
* MSP430F227x Cpu definition
*
* This device has 32KB + 256B of Flash Memory and 1KB RAM. The
* MSP430F2274 has two op-amps (OA) whereas the MSP430F2272 has none.
*/
metaonly module MSP430F227x inherits IMSP430x22xx
{
instance:
/*!
* ======== deviceMap ========
* Device specific memory blocks
*
* This memory together with the common family memory forms the
* complete memory map retuned by `getMemoryMap()`.
*/
config xdc.platform.IPlatform.Memory deviceMap[string] = [
["RAM", {
comment: "Data RAM",
name: "RAM",
base: 0x200,
len: 0x400,
space: "code/data",
access: "RWX"
}],
["FLASH", {
comment: "Program FLASH",
name: "FLASH",
base: 0x8000,
len: 0x7FDE,
space: "code",
access: "RWX"
}],
];
}