Skip to content

Commit

Permalink
Merge pull request #114 from pulp-platform/custom_vsim
Browse files Browse the repository at this point in the history
Allow custom vsim if `$VSIM` is defined
  • Loading branch information
NBruschi authored Jan 28, 2022
2 parents 4d4ce6e + b35e7b2 commit aee8a8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/gapy/configs/platforms/rtl.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"rtl": {
"commands": {
"shell": {
"executable": "vsim",
"executable": "${VSIM:-vsim}",
"args_eval": [
"\"-64\"",
"\"-c\"",
Expand All @@ -21,7 +21,7 @@
]
},
"gui": {
"executable": "vsim",
"executable": "${VSIM:-vsim}",
"args_eval": [
"\"-64\"",
"\"-do 'source \" + os.environ.get(\"VSIM_PATH\") + \"/tcl_files/config/run_and_exit.tcl'\"",
Expand Down

0 comments on commit aee8a8a

Please sign in to comment.