Skip to the selected question
ASIC.FYI

ASIC Question Bank

1,000+ hardware interview questions
DescriptionQ937
Page ↗
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

Answer choices (4)