Hardware interview practice
Blocking and nonblocking transaction-level modeling
A producer must attempt to enqueue a transaction without waiting. Which transaction-level modeling (TLM) style fits, and what return value should it inspect?
Choose one
Answer choices
- A. analysis write, and inspect an item_done count returned by write
- B. put, and inspect a sequence ID returned by the task
- C. get, and inspect the report verbosity
- D. try_put, and inspect its success bit
