1
0
forked from tanchou/Verilog

Script pour linux structure

This commit is contained in:
2025-05-15 09:23:21 +02:00
parent 861c9869f5
commit abdc824c6d
10 changed files with 98 additions and 4 deletions

View File

@@ -0,0 +1,22 @@
#!/bin/bash
# Charger l'environnement OSS CAD Suite
source /home/louis/oss-cad-suite/environment
case "$1" in
sim)
bash scripts/linux/simulate.sh
;;
wave)
bash scripts/linux/gtkwave.sh
;;
clean)
bash scripts/linux/clean.sh
;;
build)
bash scripts/linux/build.sh
;;
*)
echo "Usage: $0 {sim|wave|clean|build}"
;;
esac