blob: 87b1a8c488ccb24d8fd4d4f68a42cfcc5e34d1dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
vunit i_ent(ent(synthesis))
{
default clock is rising_edge(clk_i);
process (all)
variable num_colors : integer_vector(0 to 7);
begin
num_colors := (others => 0);
num_colors(to_integer(u0)) := num_colors(to_integer(u0)) + 1;
end process;
}
|