Questions
- Interfaces are useful for:
- Encapsulating signals belonging together
- Encapsulating functions, tasks, and assertions associated with the interface
- Changing a design deeply embedded within other designs
- All of the above
- Structures can be assigned by:
- Component
- Name
- Interface
- (a) and (b)
- Block labels allow the easier matching of
begin…end
blocks.- True
- False
- If we want to exit a loop, we can use:
break
on any loopdisable
on any loop labelbreak
on an outer loop ordisable
on any loop label
- Continue can be used to skip the rest of a loop.
- True
- False
- Queues are useful for:
- Creating a flexible FIFO for use in verification
- Creating a flexible FIFO for use in design and verification ...