Posted by mitesh.patel on Mar 2, 2020
UVM #uvm Cookbook: Sequences/LockGrab Hi All, We were exploring lock/grab feature of uvm_sequencer on UVM-1.2 using below code: class instruction extends uvm_sequence_item; typedef enum {PUSH_A, PUSH_B, ADD, SUB, MUL, DIV, POP_C} inst_t; rand inst_t inst; ...
Question