Assuming all quartus binaries are in path and following your convention, t
is top module name and top design entity:
- First run analysis and synthesis step.
quartus_map t -l /RTL/FILE/DIRECTORY
- Generate the netlist
quartus_npp t --netlist_type=sgate
- Open the netlist via gui
gnui t
All of the output files will be placed in the directory where you run the commands.
- Where did I found those steps?
As you know there is no documentation for both gnui
and quartus_npp
. So, the only way to get some information is to read someone's code who use these binaries.
There are bunch of projects on Github. Here is the one where I learned about gnui
.