source:
caseStudy_Huffmann/huffmann/huff_with_env/env+huff.v
Last change on this file was 105, checked in by , 12 years ago | |
---|---|
File size: 201 bytes |
Line | |
---|---|
1 | module huff_and_env(clk); |
2 | input clk; |
3 | output[7:0] plain; |
4 | |
5 | huffmann huff(clk,addr,ack,plain,val); |
6 | environment env(clk,val,addr,ack); |
7 | |
8 | endmodule |
9 | `include huff_with_env.v |
10 | `include environment.v |
Note: See TracBrowser
for help on using the repository browser.