Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
What you need to develop is called a "scoreboard" in Verification. It essentially does the following: (Here SV refers to SystemVerilog)s_vlsi said:No I am not looking for regression.
ok i will clarify myself.
when we are checking for data integrity and packet is small in size then
by looking on the waveform we get to know,but if packet size is big say 3000-
4000 bytes of data is there then checking on waveform is prone to errors.
That is why i wanted to ask if instead looking on the waveform is there any other
way is there or not.
Regards
property p_data_intg;
int my_local_pkt; // assume pkt is of 32 bits, if not change this
@(posedge clk) $rose(start_of_pkt), my_local_pkt = in_pkt |=>
[1:100] $rose(out_pkt_start) && my_local_pkt == out_pkt);