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

VHDL/FPGA/Verilog

开发平台:

Visual C++

  1. module shifter(in,clock,reset,out);
  2. input  in,clock,reset;
  3. output [7:0] out;
  4. reg    [7:0] out;
  5.   always@(posedge clock)
  6.      begin
  7.           if(reset)
  8.               out=8'b0000;
  9.           else
  10.               begin
  11.                 out=out<<1;
  12.                 out[0]=in;
  13.               end
  14.       end
  15. endmodule
  16.                
  17.