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

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

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
```