The xil_analysis_port is a parameterized class which extends from xil_component
function new( |
| ); |
Constructor to create a new xil_analysis_port. ~name~ is the name of the instance.
virtual task write( |
| ); |
When xil_analysis_port is enabled,this function will push input argument into the queue of xil_analysis_port, increment item_cnt. User needs to make sure that enabled is on to write transaction into xil_analysis_port. if not. use set_enabled to turn on.
virtual task get( |
| ); |
When xil_analysis_port is enabled,this function will get its output from the queue of xil_analysis_port, decrement item_cnt.Else, it will get fatal error message about attempting to get from disabled anaylysis port.