https://github.com/grazen0/verilog-practice
Verilog sources for practicing for my Computer Architecture class
https://github.com/grazen0/verilog-practice
verilog
Last synced: 24 days ago
JSON representation
Verilog sources for practicing for my Computer Architecture class
- Host: GitHub
- URL: https://github.com/grazen0/verilog-practice
- Owner: Grazen0
- Created: 2025-08-29T05:20:29.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-10-15T04:18:48.000Z (5 months ago)
- Last Synced: 2026-02-12T18:56:12.619Z (about 1 month ago)
- Topics: verilog
- Language: Verilog
- Homepage:
- Size: 85.9 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Verilog Practice
Verilog sources for practicing for my Computer Architecture class.
## Usage
You'll need [Icarus Verilog](https://steveicarus.github.io/iverilog/) installed
on your system. You can compile and run a particular testbench like this:
```bash
make run TB=week_1/mux21_tb
```
If you have [GTKWave](https://gtkwave.sourceforge.net/) on your system, you can
run, dump and visualize a testbench with the `wave` target, like this:
```bash
make wave TB=week_1/mux21_tb
```