diff options
author | dianshi <dianshi@main.lv> | 2022-01-05 20:54:13 +0000 |
---|---|---|
committer | dianshi <dianshi@main.lv> | 2022-01-05 20:54:13 +0000 |
commit | 87d81f71cb794bbaf653098bfd88d0f59d7b20d5 (patch) | |
tree | 1ebe5aa6567bc345a19d8fc092f1613b6f62639d /and/v0.1/Makefile | |
download | cpu8_v-87d81f71cb794bbaf653098bfd88d0f59d7b20d5.tar.gz cpu8_v-87d81f71cb794bbaf653098bfd88d0f59d7b20d5.zip |
Added and8
Diffstat (limited to 'and/v0.1/Makefile')
-rw-r--r-- | and/v0.1/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/and/v0.1/Makefile b/and/v0.1/Makefile new file mode 100644 index 0000000..e0cdfbb --- /dev/null +++ b/and/v0.1/Makefile @@ -0,0 +1,19 @@ +make: + iverilog -g2005-sv -o and and.v + iverilog -g2005-sv -o and8 and8.v + iverilog -g2005-sv -o alu alu.v + iverilog -g2005-sv -o test_and testbench.v and.v and8.v + iverilog -g2005-sv -o test_and8 testbench_and8.v and8.v + iverilog -g2005-sv -o test_alu testbench_alu.v alu.v + +test: + vvp test_and + +test_and8: + vvp test_and8 + +test_alu: + vvp test_alu + +wave: + gtkwave test_and.vcd
\ No newline at end of file |