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    /*
    13     *  ======== Intel80586.xdc. ========
    14     */
    15    
    16    package host.platforms.PC;
    17    
    18    /*!
    19     *  ======== Intel80586 ========
    20     *  Pentium device data sheet module.
    21     *
    22     *  This module provides basic data suitable for Intel Pentium based
    23     *  native builds.
    24     */
    25    metaonly module Intel80586 inherits xdc.platform.ICpuDataSheet
    26    {
    27    instance:    
    28        override config string cpuCore          = "586";
    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 getMemeoryMap().
    37         */
    38        config xdc.platform.IPlatform.Memory memMap[string] = [];
    39    }
    40    /*
    41     *  @(#) host.platforms.PC; 1, 0, 0,381; 4-27-2012 14:30:02; /db/ztree/library/trees/xdc/xdc-y25x/src/packages/
    42     */
    43