~ruther/jesd204b-vhdl

ref: fe4ee335475b3cb1b0b71b5ab6f2a5e0b24cfc76 jesd204b-vhdl/src/transport/transport_pkg.vhd -rw-r--r-- 395 bytes
fe4ee335 — František Boháček chore: use vhdl2008 when compiling using ghdl 3 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
library ieee;
use ieee.std_logic_1164.all;
use work.data_link_pkg.all;

package transport_pkg is

  type sample is record
    data      : std_logic_vector;
    ctrl_bits : std_logic_vector;
  end record sample;

  type frame_character_array is array (natural range <>) of frame_character;
  type samples_array is array (natural range <>, natural range <>) of sample;

end package transport_pkg;