Forrest logo
back to context overview

verilator

List of commands for verilator:

  • verilator:tldr:3c882 verilator: Build a specific C project in the current directory.
    $ verilator --binary --build-jobs 0 -Wall ${path-to-source-v}
    try on your machine
    explain this command
  • verilator:tldr:4b101 verilator: Perform linting over a code in the current directory.
    $ verilator --lint-only -Wall
    try on your machine
    explain this command
  • verilator:tldr:d2db0 verilator: Create a C++ executable in a specific folder.
    $ verilator --cc --exe --build --build-jobs 0 -Wall ${path-to-source-cpp} ${path-to-output-v}
    try on your machine
    explain this command
  • verilator:tldr:f8db9 verilator: Create XML output about the design (files, modules, instance hierarchy, logic and data types) to feed into other tools.
    $ verilator --xml-output -Wall ${path-to-output-xml}
    try on your machine
    explain this command
back to context overview