P
parag
Guest
module M;
wire w, x;
reg r;
assign x = r;
assign w = x;
I have been working on verilog for some time now but I have a doubt
cont assigns and how it maps in hardware
Here ever though we have a contassign from x to w
does nt it mean that in hardware they are plain ly connected ,
so even a value change in w should be reflected in x isnit ?
Arent cont assigns not syhthesized?
wire w, x;
reg r;
assign x = r;
assign w = x;
I have been working on verilog for some time now but I have a doubt
cont assigns and how it maps in hardware
Here ever though we have a contassign from x to w
does nt it mean that in hardware they are plain ly connected ,
so even a value change in w should be reflected in x isnit ?
Arent cont assigns not syhthesized?