1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 12:45:59 +02:00

ghdl: add French translation

This commit is contained in:
Ivor Benderavage 2020-10-16 18:46:54 -04:00 committed by Starbeamrainbowlabs
parent 71fd0643e4
commit 12d2b5cf98

28
pages.fr/common/ghdl.md Normal file
View file

@ -0,0 +1,28 @@
# ghdl
> Simulateur à source ouverte pour le langage VHDL.
> Plus d'informations: <http://ghdl.free.fr>.
- 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`