1
0
forked from tanchou/Verilog

Refactor project scripts for Windows and Linux: update paths and create new scripts for build, clean, simulate, and GTKWave functionalities.

This commit is contained in:
2025-05-15 09:26:34 +02:00
parent abdc824c6d
commit 3569b55925
22 changed files with 294 additions and 12 deletions

22
Semaine_5/DHT11/project.sh Executable file
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