1    /*!
     2     * File generated by platform wizard. 
     3     *
     4     */
     5    
     6    metaonly module Platform inherits xdc.platform.IPlatform {
     7    
     8        config ti.platforms.generic.Platform.Instance plat =
     9            ti.platforms.generic.Platform.create("plat", {
    10                clockRate:      300.0,                                       
    11                catalogName:    "ti.catalog.arm",
    12                deviceName:     "TMS320DA830",
    13                externalMemoryMap: [          
    14                    ["SDRAM", {name: "SDRAM", base: 0xC0000000, len: 0x02000000, space: "code/data",access: "RWX"}],
    15                    ["SHARED", {name: "SHARED", base: 0xC2000000, len: 0x01000000, space: "code/data",access: "RWX"}],
    16                ],
    17        });
    18        
    19    instance :
    20        
    21        override config string codeMemory = "SDRAM";   
    22        override config string dataMemory = "SDRAM";                                
    23        override config string stackMemory = "SDRAM";
    24        
    25    }