File tree Expand file tree Collapse file tree 4 files changed +5
-12
lines changed Expand file tree Collapse file tree 4 files changed +5
-12
lines changed Original file line number Diff line number Diff line change @@ -129,17 +129,11 @@ package s_axis_sequencer_pkg;
129
129
this .low_time_max = low_time_max;
130
130
endfunction : set_low_time_range
131
131
132
- // call ready generation function
132
+ // virtual tasks to be implemented
133
133
virtual task start ();
134
134
this .fatal ($sformatf (" Base class was instantiated instead of the parameterized class!" ));
135
135
endtask : start
136
136
137
-
138
- // virtual tasks to be implemented
139
- virtual task user_gen_tready ();
140
- this .fatal ($sformatf (" Base class was instantiated instead of the parameterized class!" ));
141
- endtask : user_gen_tready
142
-
143
137
virtual task stop ();
144
138
this .fatal ($sformatf (" Base class was instantiated instead of the parameterized class!" ));
145
139
endtask : stop
Original file line number Diff line number Diff line change @@ -94,7 +94,6 @@ package environment_pkg;
94
94
// - start the sequencers
95
95
// ============================================================================
96
96
task test ();
97
- this .src_axis_agent.master_sequencer.run ();
98
97
// DEST AXIS does not have to run, scoreboard connects and
99
98
// gathers packets from the agent
100
99
this .scrb.run ();
Original file line number Diff line number Diff line change @@ -152,8 +152,8 @@ program test_program;
152
152
axi_ready_gen wready_gen;
153
153
154
154
// Set no backpressure from AXIS destination
155
- dma_flock_env.dst_axis_agent.master_sequencer .set_mode (XIL_AXI4STREAM_READY_GEN_NO_BACKPRESSURE );
156
- dma_flock_env.dst_axis_agent.master_sequencer. user_gen_tready ();
155
+ dma_flock_env.dst_axis_agent.slave_sequencer .set_mode (XIL_AXI4STREAM_READY_GEN_NO_BACKPRESSURE );
156
+ dma_flock_env.dst_axis_agent.slave_sequencer. start ();
157
157
158
158
// Set no backpressure from DDR
159
159
wready_gen = base_env.ddr.agent.wr_driver.create_ready (" wready" );
Original file line number Diff line number Diff line change @@ -184,8 +184,8 @@ program test_program_frame_delay;
184
184
axi_ready_gen wready_gen;
185
185
186
186
// Set no backpressure from AXIS destination
187
- dma_flock_env.dst_axis_agent.master_sequencer .set_mode (XIL_AXI4STREAM_READY_GEN_NO_BACKPRESSURE );
188
- dma_flock_env.dst_axis_agent.master_sequencer. user_gen_tready ();
187
+ dma_flock_env.dst_axis_agent.slave_sequencer .set_mode (XIL_AXI4STREAM_READY_GEN_NO_BACKPRESSURE );
188
+ dma_flock_env.dst_axis_agent.slave_sequencer. start ();
189
189
190
190
// Set no backpressure from DDR
191
191
wready_gen = base_env.ddr.agent.wr_driver.create_ready (" wready" );
You can’t perform that action at this time.
0 commit comments