Get_byte_type(), Example – Altera Mentor Verification IP Altera Edition AMBA AXI4-Stream User Manual

Page 167

Advertising
background image

VHDL Monitor BFM

get_byte_type()

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

167

April 2014

get_byte_type()

This nonblocking procedure gets a byte_type field array element for a monitor transaction that is
uniquely identified by the transaction_id field previously created by the

create_monitor_transaction()

procedure.

The byte_type array element is identified by the optional index argument. If no index is
supplied, then the first byte_type is accessed in the array.

Example

-- Create a monitor transaction.
-- Creation returns tr_id to identify the transaction.
create_monitor_transaction(tr_id, bfm_index,

axi4stream_tr_if_0(bfm_index));

-- Get the byte_type field for the first byte of the tr_id transaction.
get_byte_type(byte_type, 0, tr_id, bfm_index,

axi4stream_tr_if_0(bfm_index));

-- Get the byte_type field for the second byte of the tr_id transaction.
get_byte_type(byte_type, 1, tr_id, bfm_index,

axi4stream_tr_if_0(bfm_index));

Prototype

get_byte_type
(

byte_type: out integer;
index : in integer; --optional
transaction_id : in integer;
bfm_id : in integer;
signal tr_if : inout axi4stream_vhd_if_struct_t

);

Arguments

byte_type

Byte type array:

AXI4STREAM_DATA_BYTE; (default)
AXI4STREAM_NULL_BYTE;
AXI4STREAM_POS_BYTE;
AXI4STREAM_ILLEGAL_BYTE;

index

(Optional) Array element index number for byte_type.

transaction_id

Transaction identifier. Refer to

Overloaded Procedure Common

Arguments

” on page 87 for more details.

bfm_id

BFM identifier. Refer to

Overloaded Procedure Common Arguments

on page 87 for more details.

tr_if

Transaction signal interface. Refer to

Overloaded Procedure Common

Arguments

” on page 87 for more details.

Returns

byte_type

Advertising