daveob
Newbie level 2
I'd like to include values in the Report strings of my testbench assertion violation checks. Something like this:
Is it possible to convert STD_LOGIC signal values or TIME into a string to append to the Report string?
Thanks all.
Code:
signal min_acq_time : TIME := 500 ns;
assert (cnv'last_event >= min_acq_time)
report "Aquisition time (" & cnv'last_event & ") is less than minimum acquisition time (" & min_acq_time & ")."
severity warning;
Is it possible to convert STD_LOGIC signal values or TIME into a string to append to the Report string?
Thanks all.