aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-11-13 17:44:12 -0800
committerFuwn <[email protected]>2023-11-13 17:44:12 -0800
commite4f904587bf05dadc615f60d1f0b1519442451e4 (patch)
treeba4e9658dbbaa6e0b9875ae38401200b6c7331f9 /README.md
downloadiverilog-test-bench-main.tar.xz
iverilog-test-bench-main.zip
feat: initial releaseHEADmain
Diffstat (limited to 'README.md')
-rw-r--r--README.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..9765dbd
--- /dev/null
+++ b/README.md
@@ -0,0 +1,19 @@
+# Icarus Verilog Test-bench
+
+## Dependencies
+
+- [Icarus Verilog](https://steveicarus.github.io/iverilog/)
+- [GTKWave](https://github.com/gtkwave/gtkwave) (Optional)
+
+## Usage
+
+```shell
+make # Build all
+
+make test # Build all and run test-bench
+
+# Build all, run test-bench, and open test waveform in GTKWave
+make test && gtkwave ./wave.vcd
+
+make clean # Clean all build artifacts
+```