source: caseStudy_Huffmann/huffmann/huff_any_text/env+huff.v @ 105

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

Hufmann case study

File size: 256 bytes
Line 
1module huff_and_env(clk);
2  input clk;
3  output[7:0]  plain;
4  input nd_val;
5  input [4:0] nd_addr;
6
7  huffmann   huff(clk,val,addr,ack,plain);
8  environment env(clk,val,nd_addr,nd_val,addr,ack);
9
10endmodule
11`include huff_with_env.v
12`include any_text_env.v
Note: See TracBrowser for help on using the repository browser.