encoder8x3_2.v
上传用户:saul_905
上传日期:2013-11-27
资源大小:184k
文件大小:0k
源码类别:

VHDL/FPGA/Verilog

开发平台:

Visual C++

  1. module encoder8x3(in,out);
  2. input  [7:0]  in;
  3. output [2:0]  out;
  4. reg    [2:0]  out;
  5. always @(in)
  6.  case(in)
  7.   8'b0000_0001:out=0;
  8.   8'b0000_0010:out=1;
  9.   8'b0000_0100:out=2;
  10.   8'b0000_1000:out=3;
  11.   8'b0001_0000:out=4;
  12.   8'b0010_0000:out=5;
  13.   8'b0100_0000:out=6;
  14.   8'b1000_0000:out=7;
  15.   endcase
  16.   
  17.  endmodule
  18.   
  19.