verilogHDL
Monday, 10 March 2014
verilog code for 1 bit full adder
BEHAVIORAL:
module flad(
input a,
input b,
input Cin,
output reg sum,
output reg Cout
);
reg s1,s2,s3;
always@(a or b or Cin) begin
s1=a^b;
s2=a&b;
s3=s1&Cin;
Cout=s3||s2;
sum=s1^Cin;
end
endmodule
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment