Can anybody please provide an example for uvm_do_callback and uvm_do_obj_callback? Is it recommended to use UVM callbacks or not recommended? Thanks. Karan Methe tfitz June 24, 2015, 5:51pm 2 Not recommended. Please let us know what you’re trying to accomplish and there’s pr...
`uvm_do_callbacks(mycb, mycomp, my_function(this, curr_addr, curr_data)) ...endtask If I am right, this macro should be invoked in component’s code (i.e. run phase), and first argument should be pointing to that component, that is keywordthis. I was just wondering if I underst...