Commit 80f1d321 authored by Marek Gumiński's avatar Marek Gumiński

Replaced some vector ranges with constants (partially)

parent 42cccc9e
......@@ -564,16 +564,16 @@ begin
phy_block: block
signal to_phys_tx_data : STD_LOGIC_VECTOR(287 DOWNTO 0);
signal to_phys_tx_k : STD_LOGIC_VECTOR(143 DOWNTO 0);
signal to_phys_tx_data : STD_LOGIC_VECTOR(c_NUM_PHYS*16-1 DOWNTO 0);
signal to_phys_tx_k : STD_LOGIC_VECTOR(c_NUM_PHYS*8-1 DOWNTO 0);
signal to_phys_rst : STD_LOGIC;
signal from_phys_rx_data : STD_LOGIC_VECTOR(287 DOWNTO 0);
signal from_phys_rx_k : STD_LOGIC_VECTOR(287 DOWNTO 0);
signal from_phys_disp_err : STD_LOGIC_VECTOR(287 DOWNTO 0);
signal from_phys_rx_comma : STD_LOGIC_VECTOR(143 DOWNTO 0);
signal from_phys_enc_err : STD_LOGIC_VECTOR(143 DOWNTO 0);
signal from_phys_rx_data : STD_LOGIC_VECTOR(c_NUM_PHYS*16-1 DOWNTO 0);
signal from_phys_rx_k : STD_LOGIC_VECTOR(c_NUM_PHYS*16-1 DOWNTO 0);
signal from_phys_disp_err : STD_LOGIC_VECTOR(c_NUM_PHYS*16-1 DOWNTO 0);
signal from_phys_rx_comma : STD_LOGIC_VECTOR(c_NUM_PHYS*8-1 DOWNTO 0);
signal from_phys_enc_err : STD_LOGIC_VECTOR(c_NUM_PHYS*8-1 DOWNTO 0);
signal c25m_to_phys_rst : STD_LOGIC;
signal from_phys_tx_enc_err_common : STD_LOGIC;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment