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.
- Host: GitHub
- URL: https://github.com/mrtkp9993/vhdlexamples
- Owner: mrtkp9993
- License: gpl-3.0
- Created: 2020-11-23T18:22:14.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2020-12-05T11:41:02.000Z (over 4 years ago)
- Last Synced: 2025-01-18T16:47:11.590Z (3 months ago)
- Topics: embedded-software, embedded-systems, fpga, vhdl, vhdl-code
- Language: VHDL
- Homepage:
- Size: 39.1 KB
- Stars: 8
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)