diff options
Diffstat (limited to 'testsuite/gna/issue1191/mux_fifo_pkg.vhd')
-rw-r--r-- | testsuite/gna/issue1191/mux_fifo_pkg.vhd | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/testsuite/gna/issue1191/mux_fifo_pkg.vhd b/testsuite/gna/issue1191/mux_fifo_pkg.vhd new file mode 100644 index 000000000..b7f94070c --- /dev/null +++ b/testsuite/gna/issue1191/mux_fifo_pkg.vhd @@ -0,0 +1,16 @@ +library IEEE; +use IEEE.STD_LOGIC_1164.all; +use ieee.numeric_std.all; + +package mux_fifo_pkg is + + type t_mux_fifo_if_data is array (natural range <>) of std_logic_vector; + + type t_mux_fifo_if is record + data : t_mux_fifo_if_data; + empty : std_logic_vector; + rd : std_logic_vector; + clk : std_logic; + end record t_mux_fifo_if; + +end mux_fifo_pkg; |