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