~ruther/jesd204b-vhdl

ref: 357cacf6c8198b05dbfce04a3b8fc3e675315aac jesd204b-vhdl/src/data_link/data_link_pkg.vhd -rw-r--r-- 532 bytes
357cacf6 — František Boháček fix(link): rename data_link package to data_link_pkg 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
library ieee;
use ieee.std_logic_1164.all;

package data_link_pkg is

  type character_vector is record
    kout            : std_logic;  -- Whether the character is a control character
    disparity_error : std_logic;  -- Whether there was a disparity error (if this is true, the character will still be correct)
    missing_error   : std_logic;  -- Whether the character was not found in the table
    d8b             : std_logic_vector(7 downto 0);  -- The decoded data
  end record character_vector;

end package data_link_pkg;
Do not follow this link