diff --git a/pages.fr/common/ghdl.md b/pages.fr/common/ghdl.md new file mode 100644 index 0000000000..a84dc60a90 --- /dev/null +++ b/pages.fr/common/ghdl.md @@ -0,0 +1,28 @@ +# ghdl + +> Simulateur à source ouverte pour le langage VHDL. +> Plus d'informations: . + +- Analyse un fichier de source VHDL et gérère un fichier objet: + +`ghdl -a {{fichier.vhdl}}` + +- Élabore un design (où `{{design}}` est le nom d'une unité de configuration, d'entité, ou d'architecture): + +`ghdl -e {{design}}` + +- Exécute un design élaboré: + +`ghdl -r {{design}}` + +- Exécute un design élaboré et sauvegarde la sortie à un fichier de forme d'onde: + +`ghdl -r {{design}} --wave={{sortie.ghw}}` + +- Vérifie le syntaxe d'un fichier de source VHDL: + +`ghdl -s {{fichier.vhdl}}` + +- Affiche l'aide générale: + +`ghdl --help` \ No newline at end of file