ShiftLeft2.v 154 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 module ShiftLeft2(shiftinput, shiftoutput); input[31:0] shiftinput; output[31:0] shiftoutput; assign shiftoutput = {shiftinput[29:0], 2'b00}; endmodule