I have a module :
module abc(
input in1,
input in2,
output in3
);
Instantiating this module in another main module:
abc name_abc(in1, in2, out);
Now in1 is changed based on some other signal. From what I understand, the instantiation would have created a block of the logic, now I want to use the block already created but with different inputs or updated inputs. Is there a way to do this in verilog?
What I want to do is :
abc name_abc(in1_updated, in2, out);