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     *  ======== TMS470xx.xdc ========
    12     */
    13    package ti.catalog.arm;
    14    
    15    /*!
    16     *  ======== TMS470xx ========
    17     *  An interface implemented by all TMS470xx devices.
    18     *
    19     *  This interface is defined to factor common data about this family into
    20     *  a single place; all TMS470xx devices extend this interface.
    21     */
    22    metaonly interface TMS470xx inherits ti.catalog.ICpuDataSheet
    23    {
    24    instance:
    25        override config string   cpuCore        = "470";
    26        override config string   isa            = "v4T";
    27    
    28        override config int     minProgUnitSize = 1;
    29        override config int     minDataUnitSize = 1;
    30        override config int     dataWordSize    = 4;
    31    };
    32    /*
    33     *  @(#) ti.catalog.arm; 1, 0, 1, 0,63; 6-4-2009 14:07:30; /db/ztree/library/trees/platform-k10x/src/
    34     */
    35