source:
caseStudy_Huffmann/huffmann/huff_with_env/rob_composition.v
Last change on this file was 105, checked in by , 12 years ago | |
---|---|
File size: 341 bytes |
Line | |
---|---|
1 | module huffmann_with_env(i_addr,i_val,clk); |
2 | input clk; |
3 | input i_val; |
4 | output[7:0] plain; |
5 | output[7:0] plainG; |
6 | input[4:0] i_addr; |
7 | |
8 | huffmann golden(clk,addr,ackG,plainG,val); |
9 | huffmann faulty(clk,addr,ack,plain,val); |
10 | environment env(clk,val,i_addr,i_val,addr,ack); |
11 | |
12 | endmodule |
13 | `include huff_with_env.v |
14 | `include environment2.v |
Note: See TracBrowser
for help on using the repository browser.