1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.fr/common/ghdl.md
2024-10-01 19:02:34 +02:00

28 lines
659 B
Markdown

# ghdl
> Simulateur à source ouvert pour le langage VHDL.
> Plus d'informations : <https://ghdl.github.io/ghdl/>.
- Analyse un fichier de source VHDL et génè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`