Passing parameters to a bind entity

In reply to dave_59:

sorry if I was not really clear… I was getting a compiler error… but I think I fixed it and its working now.
I tried binding the parameters as follows:
bind rtl_module asst_module #(
.parameter1 (parameter1),
.parameter2 (parameter2)
)
asst_module_inst (.clk(clk),
.rst(rst));

what i mean by changing the parameters during simulation time is that there are different configurations with different parameter values and it changes based on what configuration i choose.

Thanks Dave!