Forrest logo
back to context overview

ghdl

List of commands for ghdl:

  • ghdl:tldr:26208 ghdl: Elaborate a design (where `{{design}}` is the name of a configuration unit, entity unit or architecture unit).
    $ ghdl -e ${design}
    try on your machine
    explain this command
  • ghdl:tldr:29dd7 ghdl: Display the help page.
    $ ghdl --help
    try on your machine
    explain this command
  • ghdl:tldr:35dfc ghdl: Run an elaborated design and dump output to a waveform file.
    $ ghdl -r ${design} --wave=${output-ghw}
    try on your machine
    explain this command
  • ghdl:tldr:5440b ghdl: Run an elaborated design.
    $ ghdl -r ${design}
    try on your machine
    explain this command
  • ghdl:tldr:b5ba0 ghdl: Analyze a VHDL source file and produce an object file.
    $ ghdl -a ${filename-vhdl}
    try on your machine
    explain this command
  • ghdl:tldr:f37f1 ghdl: Check the syntax of a VHDL source file.
    $ ghdl -s ${filename-vhdl}
    try on your machine
    explain this command
back to context overview