source: caseStudy_Huffmann/huffmann/huff_with_env/env+huff.v

Last change on this file was 105, checked in by cecile, 12 years ago

Hufmann case study

File size: 201 bytes
Line 
1module 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
8endmodule
9`include huff_with_env.v
10`include environment.v
Note: See TracBrowser for help on using the repository browser.