3 @The skeleton was generated by VUTGenerator@
4 =======================================
6 ---------------------------------------
9 ---------------------------------------
10 Description: <description>
11 =======================================
14 module shifterR(clk,in_data,enable,reset,n,out_data);
23 output [7:0] out_data;
38 initial out_data <= 0;
40 always @ (posedge clk) begin
44 out_data <= (in_data >> n);