Saturday 4 July 2015

Arithmetic circuits- 4bit multiplier

4 BIT MULTIPLIER
module multiplie4bit(out,a,b);
output [7:0]out;
input [3:0]a,b;
assign out=a*b;
endmodule

No comments:

Post a Comment