1    /*
     2     *  Copyright 2009 by Texas Instruments Incorporated.
     3     *
     4     *  All rights reserved. Property of Texas Instruments Incorporated.
     5     *  Restricted rights to use, duplicate or disclose this code are
     6     *  granted through contract.
     7     *
     8     */
     9    
    10    /*
    11     *  ======== CortexM3.xdc ========
    12     */
    13    
    14    package ti.catalog.c470;
    15    
    16    /*!
    17     *  ======== CortexM3 ========
    18     *  The CortexM3 device data sheet module.
    19     *
    20     *  This module implements the xdc.platform.ICpuDataSheet interface and is 
    21     *  used by platforms to obtain "data sheet" information about this device.
    22     *
    23     */
    24    metaonly module CortexM3 inherits ti.catalog.ICpuDataSheet
    25    {
    26    instance:
    27        override config string cpuCore           = "CM3";
    28        override config string isa               = "v7M"; 
    29        override config string cpuCoreRevision   = "1.0";
    30        override config int    minProgUnitSize   = 1;
    31        override config int    minDataUnitSize   = 1;
    32        override config int    dataWordSize      = 4;
    33    
    34        /*!
    35         *  ======== memMap ========
    36         *  The memory map returned be getMemoryMap().
    37         */
    38        config xdc.platform.IPlatform.Memory memMap[string] =
    39            ti.catalog.arm.CortexM3.memMap;
    40    };
    41    /*
    42     *  @(#) ti.catalog.c470; 1, 0, 1, 1,173; 6-4-2009 14:13:09; /db/ztree/library/trees/platform-k10x/src/
    43     */
    44