blob: 233b25378bce4e99def9bf97534469a7129bd289 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
use std.env.finish;
entity repro_tb is
end entity repro_tb;
architecture sim of repro_tb is
type SLV_vector is array (natural range <>) of std_logic_vector;
constant TEST_VAL_A : SLV_vector(3 downto 1)(7 downto 0) := (x"AD", x"12", x"DC");
-- Broken
constant TEST_SLICE : SLV_vector(1 downto 0) := TEST_VAL_A(3 downto 2);
-- Works
--constant TEST_SLICE : SLV_vector(1 downto 0)(TEST_VAL_A'element'range) := TEST_VAL_A(3 downto 2);
begin
test_runner : process
begin
assert TEST_SLICE'high = 1 report "High should be 1" severity failure;
assert TEST_SLICE'low = 0 report "Low should be 0" severity failure;
finish;
end process test_runner;
end architecture sim;
|