forked from tanchou/Verilog
23 lines
367 B
Bash
23 lines
367 B
Bash
![]() |
#!/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
|