S
Suresh V
Guest
Hi,
I have design where i have to force on port/signal , my goal is that
applied force should not back propagate . Please help me is there any
way to do that without touching the design.
module top;
wire a;
inst i(.in(a));
endmodule
module inst(input in);
endmodule
pli force is applied on 'in' .
only way i currently see is to add cont_assign like
module top;
wire a;
wire x;
assign x = a;
inst(.in(x));
endmodule
But i dont want to change the design to do this.
+suresh
I have design where i have to force on port/signal , my goal is that
applied force should not back propagate . Please help me is there any
way to do that without touching the design.
module top;
wire a;
inst i(.in(a));
endmodule
module inst(input in);
endmodule
pli force is applied on 'in' .
only way i currently see is to add cont_assign like
module top;
wire a;
wire x;
assign x = a;
inst(.in(x));
endmodule
But i dont want to change the design to do this.
+suresh