1
0
forked from tanchou/Verilog
Files
Verilog_Louis/Semaine_7/DHT11/project.sh

25 lines
382 B
Bash
Raw Permalink Normal View History

2025-05-25 19:04:56 +02:00
#!/bin/bash
# Charger l'environnement OSS CAD Suite
source /home/louis/oss-cad-suite/environment
mkdir -p runs
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