While creating any new component or object in UVM we first register it with the factory,
We usually use the macros
// Code
`uvm_object_utils(my_sequence)
function new(string name="my_sequence");
super.new(name);
endfunction
Most of the time I write nothi...