DescriptionQ937
Q937DVASIC interview problem
Finish_item versus get_response
TechniquesUVMIntegration and end-of-test
DifficultyEasy
TopicUVM Components
LanguageSystemVerilog
Format4 choices
01
Problem
finish_item returns, but the sequence then hangs forever in get_response. Which driver change directly supplies the missing response?
Starting declarationSystemVerilog
// sequence
start_item(req);
finish_item(req);
get_response(rsp);
// driver
seq_item_port.get_next_item(req);
drive(req);
seq_item_port.item_done();02
