Skip to content

Commands to generate VQM

Konstantin edited this page May 12, 2018 · 2 revisions

Following commands should be issued to generate VQM netlist from Yosys

// adding all SystemVerilog sources like that
read_verilog -sv tetris/rtl/draw_field.sv

// adding all Verilog sources like that
read_verilog ip_cores/vga/vga_time_generator.v

// starting synthesis
synth_intel -noiopads -family cyclonev -top rtl_top -vqm rtl_top.vqm

It is convinient to save this snippet in run_yosys.ys file and run it from Linux terminal

yosys run_yosys.ys
Clone this wiki locally