S
sridhar
Guest
I guess there is a race condition with this
module y(a);
$display("%b",a);
endmodule
module x;
reg a;
initial
a = 1;
y y1(a);
endmodule
Would this avoid the race condition?
module x;
reg a;
initial
#0
a = 1;
y y1(a);
endmodule
Thanks
sridhar
module y(a);
$display("%b",a);
endmodule
module x;
reg a;
initial
a = 1;
y y1(a);
endmodule
Would this avoid the race condition?
module x;
reg a;
initial
#0
a = 1;
y y1(a);
endmodule
Thanks
sridhar