Get_write_addr_phase(), Axi3 example, Axi4 example – Altera Mentor Verification IP Altera Edition AMBA AXI3/4TM User Manual
Page 105: Slave calling the, Task, followed by the, Transaction by calling the, Test program using

SystemVerilog AXI3 and AXI4 Slave BFMs
get_write_addr_phase()
Mentor VIP AE AXI3/4 User Guide, V10.2b
87
September 2013
get_write_addr_phase()
This blocking task gets a write address phase previously created by the
Note
For AXI3, the get_write_addr_phase() also sets the AWREADY protocol signal at the
appropriate time, defined by the transaction record address_ready_delay field.
AXI3 Example
// Declare a local variable to hold the transaction record.
axi_transaction write_trans;
// Create a slave transaction and assign it to the local
// write_trans variable.
write_trans = bfm.create_slave_transaction();
....
// Get the write address phase of the write_trans transaction.
bfm.get_write_addr_phase(write_trans);
AXI4 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();
....
// Get the write address phase of the write_trans transaction.
bfm.get_write_addr_phase(write_trans);
Prototype
// * = axi | axi4
task automatic get_write_addr_phase
(
*_transaction trans
);
Arguments
trans
The *_transaction record.
Returns
None