Blame view

Afficheur_7SEG/Afficheur_7SEG.runs/impl_1/rundef.js 1.37 KB
231d00d3   bilalelhasnaoui   Les deux applicat...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
  //

  // Vivado(TM)

  // rundef.js: a Vivado-generated Runs Script for WSH 5.1/5.6

  // Copyright 1986-2019 Xilinx, 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/SDK/2019.1/bin;C:/Xilinx/Vivado/2019.1/ids_lite/ISE/bin/nt64;C:/Xilinx/Vivado/2019.1/ids_lite/ISE/lib/nt64;C:/Xilinx/Vivado/2019.1/bin;";

  } else {

    PathVal = "C:/Xilinx/SDK/2019.1/bin;C:/Xilinx/Vivado/2019.1/ids_lite/ISE/bin/nt64;C:/Xilinx/Vivado/2019.1/ids_lite/ISE/lib/nt64;C:/Xilinx/Vivado/2019.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 Afficheur_7SEG.vdi -applog -m64 -product Vivado -messageDb vivado.pb -mode batch -source Afficheur_7SEG.tcl -notrace" );

  

  

  

  

  

  function EAInclude( EAInclFilename ) {

    var EAFso = new ActiveXObject( "Scripting.FileSystemObject" );

    var EAInclFile = EAFso.OpenTextFile( EAInclFilename );

    var EAIFContents = EAInclFile.ReadAll();

    EAInclFile.Close();

    return EAIFContents;

  }