Forrest logo
back to context overview

iverilog

List of commands for iverilog:

  • iverilog:tldr:14e23 iverilog: Preprocess Verilog code without compiling.
    $ iverilog -E ${path-to-source-v}
    try on your machine
    explain this command
  • iverilog:tldr:4471e iverilog: Compile using Verilog library files from a different path.
    $ iverilog ${path-to-source-v} -o ${path-to-executable} -I${path-to-library_directory}
    try on your machine
    explain this command
  • iverilog:tldr:a3698 iverilog: Compile and run explicitly using the VVP runtime.
    $ iverilog -o ${path-to-executable} -tvvp ${path-to-source-v}
    try on your machine
    explain this command
  • iverilog:tldr:bc840 iverilog: Compile a source file into an executable.
    $ iverilog ${path-to-source-v} -o ${path-to-executable}
    try on your machine
    explain this command
back to context overview