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
Post a Comment