VLSI DESIGN
Wednesday, 11 February 2015
Simple 2-Bit Multiplication
Verilog code for Simple 2-Bit Multiplication:
module Multiplier(
input [1:0] a,
input [1:0] b,
output [3:0] p );
assign p=a*b;
endmodule
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment