Execute_write_response_phase(), Example – Altera Mentor Verification IP Altera Edition AMBA AXI4-Lite User Manual

Page 74

Advertising
background image

Mentor Verification IP AE AXI4-Lite User Guide, V10.3

74

SystemVerilog Slave BFM
execute_write_response_phase()

April 2014

execute_write_response_phase()

This task executes a write phase previously created by the

create_slave_transaction()

task. This

phase can be blocking (default) or nonblocking, as defined by the transaction record
operation_mode field.

It sets the BVALID protocol signal at the approriate time defined by the transaction record
write_response_valid_delay field and sets the transaction_done field to 1 on completion of the
phase to indicate the whole transaction has completed.

Example

// Declare a local variable to hold the transaction record.
axi4_transaction write_trans;

// Create a slave transaction and assign it to the local
// write_trans variable.
write_trans = bfm.create_slave_transaction();

....

// Execute the write response phase for the write_trans transaction.
bfm.execute_write_response_phase(write_trans);

Prototype


task automatic execute_write_response_phase
(

_transaction trans

);

Arguments

trans

The _transaction record.

Returns

None

Advertising