123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // Vivado(TM)
- // rundef.js: a Vivado-generated Runs Script for WSH 5.1/5.6
- // Copyright 1986-2022 Xilinx, Inc. All Rights Reserved.
- // Copyright 2022-2023 Advanced Micro Devices, Inc. All Rights Reserved.
- //
- var WshShell = new ActiveXObject( "WScript.Shell" );
- var ProcEnv = WshShell.Environment( "Process" );
- var PathVal = ProcEnv("PATH");
- if ( PathVal.length == 0 ) {
- PathVal = "C:/Xilinx/Vivado/2023.1/ids_lite/ISE/bin/nt64;C:/Xilinx/Vivado/2023.1/ids_lite/ISE/lib/nt64;C:/Xilinx/Vivado/2023.1/bin;";
- } else {
- PathVal = "C:/Xilinx/Vivado/2023.1/ids_lite/ISE/bin/nt64;C:/Xilinx/Vivado/2023.1/ids_lite/ISE/lib/nt64;C:/Xilinx/Vivado/2023.1/bin;" + PathVal;
- }
- ProcEnv("PATH") = PathVal;
- var RDScrFP = WScript.ScriptFullName;
- var RDScrN = WScript.ScriptName;
- var RDScrDir = RDScrFP.substr( 0, RDScrFP.length - RDScrN.length - 1 );
- var ISEJScriptLib = RDScrDir + "/ISEWrap.js";
- eval( EAInclude(ISEJScriptLib) );
- // pre-commands:
- ISETouchFile( "init_design", "begin" );
- ISEStep( "vivado",
- "-log basys3top.vdi -applog -m64 -product Vivado -messageDb vivado.pb -mode batch -source basys3top.tcl -notrace" );
- function EAInclude( EAInclFilename ) {
- var EAFso = new ActiveXObject( "Scripting.FileSystemObject" );
- var EAInclFile = EAFso.OpenTextFile( EAInclFilename );
- var EAIFContents = EAInclFile.ReadAll();
- EAInclFile.Close();
- return EAIFContents;
- }
|