diff options
Diffstat (limited to 'alu/v0.1_16bit/Makefile')
-rw-r--r-- | alu/v0.1_16bit/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/alu/v0.1_16bit/Makefile b/alu/v0.1_16bit/Makefile new file mode 100644 index 0000000..0459ab3 --- /dev/null +++ b/alu/v0.1_16bit/Makefile @@ -0,0 +1,9 @@ +make: + iverilog -g2005-sv -o alu alu.v + iverilog -g2005-sv -o test_alu testbench_alu.v alu.v + +test: + vvp test_alu + +wave: + gtkwave test_alu.vcd |