Hi All,
I have a scenario where i need to send n random bytes and out of n bytes i should able to corrupt few selected bytes.
I have used Queue for selecting error bytes list.
Transaction :
rand bit [7:0] tx_data_byte[`MAX_DATA:0] ; // data byte array
rand int unsigned tx_no_of_bytes_to_send ; // number of data bytes to send
rand byte tx_err_bytes[$] ; //queue contains byte positions to be corrupted
Example :
consider i am sending 5 data bytes and I have to corrupt 2,4,5 bytes (corrupting data bytes is handled in driver)
Sequence :
`u