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