identify the verilog code output

 find the output of below code:




integer a, b,c;

initial

begin


a=10; b=20; c=15;


end

initial

begin

a<=b+c;

b<=a+5;


c<=a-b;

end



output:

a=35

b=15

c=-10



Comments

Popular posts from this blog