Skip to content

Commit

Permalink
reverting change
Browse files Browse the repository at this point in the history
  • Loading branch information
ruck314 committed Sep 28, 2024
1 parent ccce5a9 commit 81571f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vivado/vcs.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -339,14 +339,14 @@ if { ${list} != "" } {

# open the files
set in [open ${simTbOutDir}/vcs/${simTbFileName}.sh r]
set out [open ${simTbOutDir}/sim_vcs.sh w]
set out [open ${simTbOutDir}/sim_vcs_mx.sh w]

# Find and replace the AFS path
while { [eof ${in}] != 1 } {

gets ${in} line

# Do not execute the simulation in sim_vcs.sh build script
# Do not execute the simulation in sim_vcs_mx.sh build script
if { [string match "*simulate.do" ${line}] } {
set line " echo \"Ready to simulate\""

Expand Down Expand Up @@ -397,7 +397,7 @@ close ${in}
close ${out}

# Update the permissions
exec chmod 0755 ${simTbOutDir}/sim_vcs.sh
exec chmod 0755 ${simTbOutDir}/sim_vcs_mx.sh

#####################################################################################################
#####################################################################################################
Expand Down

0 comments on commit 81571f2

Please sign in to comment.