chip design made easy

Popular Pages

online Verilog Code for 8bit *4bit multiplier

Verilog code sample for 8bit * 4bit multiplier.

module multiplier(A, B, Result);
input [7:0] A;
input [3:0] B;
output [11:0] Result;

assign Result = A * B;
endmodule


People found these links also interested and knowledgeable

Register Transfer Language Discussions

Popular columns


Pool of Chip Articles are available.....