S
Shaun Jackman
Guest
Is it legal to have multiple assignment statements for the same wire? For example, what's the effect of the following snippet?
module foo(input zero, one, output x);
assign x = zero ? 1'b0 : 1'bZ;
assign x = one ? 1'b1 : 1'bZ;
Cheers,
Shaun
module foo(input zero, one, output x);
assign x = zero ? 1'b0 : 1'bZ;
assign x = one ? 1'b1 : 1'bZ;
Cheers,
Shaun