Hi
Testing a divider in VHDL which is roughly given by:
L: for i in 0 to (16-1) generate
data_o(i) <= data_i(8 + i);
end generate;
I would like to know how to get started with OSVVM as there are not a-lot of “hello world” type examples floating around.
My first thought is to generate a RandomPType of some range and assign this to data_i. I would then need to check that the random data_o is correct for random data_i.
How can I achieve this with OSVVM?
Thanks
Lachlan.