2 BIT MULTIPLIER module multiplier2bit(out,a,b); output [3:0]out; input [1:0]a; input [1:0]b; assign out=a*b; endmodule
No comments:
Post a Comment