Author ; Kishore Papisetty
module halfadder(
output sum,
output carry,
input a,
input b
);
assign sum = a^b;
assign carry = a&b;
endmodule
module halfadder(
output sum,
output carry,
input a,
input b
);
assign sum = a^b;
assign carry = a&b;
endmodule
Comments
Post a Comment