Professor : Dr. Mohammad Hamghalam
Student : Ramtin Kosari
sudo apt update
sudo apt install ghdl gtkwaveI compile, run and visualize my projects in linux operating system and here is a guide to run projects on this repository :
- Each exercise in this repository has
main vhdl fileandtestbench vhdl file. - There are 4 steps to see results, analyze, compile, run and visualize
- Analyze :
ghdl -a [main vhdl file].vhdl ghdl -a [testbench file].vhdl
- Compile :
ghdl -e [testbench file]
- Run :
ghdl -r [testbench file] --vcd=wave.vcd
- Visuzalize :
gtkwave wave.vcd
That's it !
