source: caseStudy_Huffmann/huffmann/huff_any_text/env+huff_vis.v

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

Hufmann case study

File size: 260 bytes
Line 
1module huff_and_env(clk);
2  input clk;
3  input nd_val;
4  input [4:0] nd_addr;
5  output[7:0]  plain;
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_vis.v
12`include any_text_env.v
Note: See TracBrowser for help on using the repository browser.