1    /* --COPYRIGHT--,TI
     2     * Copyright (c) $(CPYYEAR)
     3     * Texas Instruments
     4     *
     5     *  All rights reserved.  Property of Texas Instruments
     6     *  Restricted rights to use, duplicate or disclose this code are
     7     *  granted through contract.
     8     * 
     9     * --/COPYRIGHT--*/
    10    /*!
    11     * File generated by platform wizard. 
    12     *
    13     */
    14    
    15    metaonly module Platform inherits xdc.platform.IPlatform {
    16    
    17        config ti.platforms.generic.Platform.Instance plat =
    18            ti.platforms.generic.Platform.create("plat", {
    19                clockRate:      800.0,                                       
    20                catalogName:    "ti.catalog.c6000",
    21                deviceName:     "TMS320CDM740",
    22                externalMemoryMap: [          
    23                    ["EXT_RAM", {name: "EXT_RAM", base: 0x80000000, len: 0x02000000, space: "code/data",access: "RWX"}],
    24                    ["SHARED", {name: "SHARED", base: 0x8F000000, len: 0x01000000, space: "code/data",access: "RWX"}],
    25                ],
    26        });
    27        
    28    instance :
    29        
    30        override config string codeMemory = "EXT_RAM";   
    31        override config string dataMemory = "EXT_RAM";                                
    32        override config string stackMemory = "EXT_RAM";
    33        
    34    }