Files
tldr/pages.fr/common/ghdl.md

29 lines
662 B
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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