Altera Mentor Verification IP Altera Edition AMBA AXI3/4T Manual de usuario Pagina 138

  • Descarga
  • Añadir a mis manuales
  • Imprimir
  • Pagina
    / 783
  • Tabla de contenidos
  • MARCADORES
  • Valorado. / 5. Basado en revisión del cliente
Vista de pagina 137
Mentor VIP AE AXI3/4 User Guide, V10.2b
120
SystemVerilog AXI3 and AXI4 Monitor BFMs
get_read_data_phase()
September 2013
get_read_data_phase()
This blocking task gets a read data phase previously created by the
create_monitor_transaction() function.The get_read_data_phase() sets the data_beat_done
array index element field to 1 when the phase completes. If this is the last phase (beat) of the
burst, then it sets the transaction_done field to 1 to indicate the whole read transaction is
complete.
AXI3 Example
// Declare a local variable to hold the transaction record.
axi_transaction read_trans;
// Create a monitor transaction and assign it to the local
// read_trans variable.
read_trans = bfm.create_monitor_transaction();
....
// Get the read data phase for the first beat of the
// read_trans transaction.
bfm.get_read_data_phase(read_trans, 0);
// Get the read data phase for the second beat of the
// read_trans transaction.
bfm.get_read_data_phase(read_trans, 1);
Prototype
// * = axi | axi4
task automatic get_read_data_phase
(
*_transaction trans
,
int index = 0 // Optional
);
Arguments trans
The *_transaction record.
index (Optional) Data phase (beat) number.
Returns
None
Vista de pagina 137
1 2 ... 133 134 135 136 137 138 139 140 141 142 143 ... 782 783

Comentarios a estos manuales

Sin comentarios