An open API service indexing awesome lists of open source software.

https://github.com/mrtkp9993/vhdlexamples

VHDL examples.
https://github.com/mrtkp9993/vhdlexamples

embedded-software embedded-systems fpga vhdl vhdl-code

Last synced: about 1 month ago
JSON representation

VHDL examples.

Awesome Lists containing this project

README

        

# VHDL Examples

Simple VHDL examples.

## How to run

Just run ```make```or follow the steps:

1. Analyze the source file(s):

ghdl –a --ieee=synopsys .vhd

2. Analyze the testbench file(s):

ghdl –a --ieee=synopsys tb_.vhd

3. Generate executable file:

ghdl –e --ieee=synopsys tb_

4. Run the simulation:

ghdl –r --ieee=synopsys tb_ --vcd=tb_.vcd

5. View the waveform:

gtkwave tb_.vcd

Source: [Link](https://www.physi.uni-heidelberg.de/~angelov/VHDL/VHDL_SS09_Teil05.pdf)