From 81571f23c15dc210a64ed72aabf0a01c42487412 Mon Sep 17 00:00:00 2001 From: Larry Ruckman Date: Fri, 27 Sep 2024 20:46:08 -0700 Subject: [PATCH] reverting change --- vivado/vcs.tcl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vivado/vcs.tcl b/vivado/vcs.tcl index cbfc44c..6b91bbd 100644 --- a/vivado/vcs.tcl +++ b/vivado/vcs.tcl @@ -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\"" @@ -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 ##################################################################################################### #####################################################################################################