add files

This commit is contained in:
Nicholas Orlowsky 2025-06-24 15:24:21 -04:00
commit ba46ab8dc4
No known key found for this signature in database
GPG key ID: A9F3BA4C0AA7A70B
848 changed files with 3642008 additions and 0 deletions

View file

@ -0,0 +1,40 @@
//
// Vivado(TM)
// rundef.js: a Vivado-generated Runs Script for WSH 5.1/5.6
// Copyright 1986-2022 Xilinx, Inc. All Rights Reserved.
//
echo "This script was generated under a different operating system."
echo "Please update the PATH variable below, before executing this script"
exit
var WshShell = new ActiveXObject( "WScript.Shell" );
var ProcEnv = WshShell.Environment( "Process" );
var PathVal = ProcEnv("PATH");
if ( PathVal.length == 0 ) {
PathVal = "/home/nickorlow/vivado/inst_22.01/Vivado/2022.1/ids_lite/ISE/bin/lin64;/home/nickorlow/vivado/inst_22.01/Vivado/2022.1/bin;";
} else {
PathVal = "/home/nickorlow/vivado/inst_22.01/Vivado/2022.1/ids_lite/ISE/bin/lin64;/home/nickorlow/vivado/inst_22.01/Vivado/2022.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) );
ISEStep( "vivado",
"-log top_wrapper.vds -m64 -product Vivado -mode batch -messageDb vivado.pb -notrace -source top_wrapper.tcl" );
function EAInclude( EAInclFilename ) {
var EAFso = new ActiveXObject( "Scripting.FileSystemObject" );
var EAInclFile = EAFso.OpenTextFile( EAInclFilename );
var EAIFContents = EAInclFile.ReadAll();
EAInclFile.Close();
return EAIFContents;
}