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     *  ======== Ducati.xdc ========
    12     */
    13    
    14    /*!
    15     *  ======== Ducati ========
    16     *  The Ducati device data sheet module.
    17     *
    18     *  This module implements the xdc.platform.ICpuDataSheet interface and is 
    19     *  used by platforms to obtain "data sheet" information about this device.
    20     *
    21     */
    22    metaonly module Ducati inherits ti.catalog.ICpuDataSheet
    23    {
    24    instance:
    25        override config string cpuCore           = "CM3";
    26        override config string isa               = "v7M";
    27        override config string cpuCoreRevision   = "1.0";
    28        override config int    minProgUnitSize   = 1;
    29        override config int    minDataUnitSize   = 1;
    30        override config int    dataWordSize      = 4;
    31    
    32        /*!
    33         *  ======== memMap ========
    34         *  The memory map returned be getMemoryMap().
    35         */
    36        config xdc.platform.IPlatform.Memory memMap[string] = 
    37            ti.catalog.arm.nda.Ducati.memMap;
    38    };
    39    /*
    40     *  @(#) ti.catalog.c470.nda; 1, 0, 0, 0,27; 6-4-2009 14:20:09; /db/ztree/library/trees/platform-k10x/src/
    41     */
    42