Overriding a parameter

When you are using parameterized components and objects, make sure that you use the corresponding `uvm_*_param_utils macros and not the normal ones:


class my_param_component#(int WIDTH=32) extends uvm_component;

  `uvm_component_param_utils(my_param_component#(WIDTH))
.
.
.