Donate. I desperately need donations to survive due to my health

Get paid by answering surveys Click here

Click here to donate

Remote/Work from Home jobs

HowdoIcreatea4bitshifterthatshiftsleftthe4bitnumberby2

This is the code I currently have for my 4-bit shifter that will shift A to left by 2 everytime. I keep getting errors on this code. Just wondering if anyone can help me figure out what is wrong with this code I have.

    module shifter(A, Out);

     input [3:0] A;
     output [3:0] Out;

     assign Out= A>>2;

  endmodule

Comments