blob: e0cdfbb8db21d6bf3b6b8d8131f244a6c8b57861 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
|