1    /* 
     2     *  Copyright (c) 2008 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     * */
    12    package host.platforms.SUN;
    13    
    14    /*!
    15     *  ======== SunSparc7 ========
    16     *  Sparc device data sheet module.
    17     *
    18     *  This module provides basic data suitable for SUN Solaris native
    19     *  builds.
    20     */
    21    metaonly module SunSparc7 inherits xdc.platform.ICpuDataSheet
    22    {
    23    instance:
    24        override config string cpuCore          = "sparc7";
    25        override config string cpuCoreRevision   = "1.0";
    26        override config int    minProgUnitSize   = 1;
    27        override config int    minDataUnitSize   = 1;
    28        override config int    dataWordSize     = 4;
    29    
    30        /*!
    31         *  ======== memMap ========
    32         *  The memory map returned be getMemeoryMap().
    33         */
    34        config xdc.platform.IPlatform.Memory memMap[string] = [];
    35    }
    36    /*
    37     *  @(#) host.platforms.SUN; 1, 0, 0, 1,390; 9-3-2012 16:21:47; /db/ztree/library/trees/xdc/xdc-y35x/src/packages/
    38     */
    39