Blog categorized as Uncategorized

DVCON 2024

17.09.24 12:55 AM By Advane Harshal - Comment(s)


Abstract- Serial bus analyzer presented here is generic serial bus debugger which can basically monitor single input line for any serial bus protocol and displays the frames/state and values both big and little endian in a hex format on the waveform like gtkwaves, VCS etc. The design is protocol agn...

UVM macros to make life easier

10.09.24 11:26 PM By Advane Harshal - Comment(s)

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...