diff options
author | dianshi <dianshi@main.lv> | 2022-01-25 21:37:30 +0000 |
---|---|---|
committer | dianshi <dianshi@main.lv> | 2022-01-25 21:37:30 +0000 |
commit | 2cbdc8a905d6b4fac757ae6a33f75548b16f10e7 (patch) | |
tree | 138402f00d7e675e8c6bc80a66d56a7e8b7c7c58 /alu_control/v0.1/Makefile | |
parent | 8661ed2084e8d50ef19a2827484fefd07c4f20e1 (diff) | |
download | cpu8_v-2cbdc8a905d6b4fac757ae6a33f75548b16f10e7.tar.gz cpu8_v-2cbdc8a905d6b4fac757ae6a33f75548b16f10e7.zip |
Add alu_control version v0.1
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 |