Skip to content
Snippets Groups Projects
Commit 7a6e3130 authored by Pepping's avatar Pepping
Browse files

Added g_unb1_ctrl_board_version generic and added it to info vector.

parent b9a89028
No related branches found
No related tags found
No related merge requests found
...@@ -31,9 +31,10 @@ USE work.unb1_board_pkg.ALL; ...@@ -31,9 +31,10 @@ USE work.unb1_board_pkg.ALL;
ENTITY unb1_board_system_info IS ENTITY unb1_board_system_info IS
GENERIC ( GENERIC (
g_sim : BOOLEAN := FALSE; g_sim : BOOLEAN := FALSE;
g_fw_version : t_unb1_board_fw_version := c_unb1_board_fw_version; -- firmware version x.y (4b.4b) g_fw_version : t_unb1_board_fw_version := c_unb1_board_fw_version; -- firmware version x.y (4b.4b)
g_aux : t_c_unb1_board_aux := c_unb1_board_aux -- aux contains the hardware version g_aux : t_c_unb1_board_aux := c_unb1_board_aux; -- aux contains the hardware version
g_ctrl_unb1_version : NATURAL := 1
); );
PORT ( PORT (
clk : IN STD_LOGIC; clk : IN STD_LOGIC;
...@@ -86,6 +87,7 @@ BEGIN ...@@ -86,6 +87,7 @@ BEGIN
p_info : PROCESS(cs_sim, hw_version_reg, id_reg) p_info : PROCESS(cs_sim, hw_version_reg, id_reg)
BEGIN BEGIN
nxt_info <= (OTHERS=>'0'); nxt_info <= (OTHERS=>'0');
nxt_info(27 DOWNTO 24) <= TO_UVEC(g_ctrl_unb1_version, 4);
nxt_info(23 DOWNTO 20) <= TO_UVEC(g_fw_version.hi, 4); nxt_info(23 DOWNTO 20) <= TO_UVEC(g_fw_version.hi, 4);
nxt_info(19 DOWNTO 16) <= TO_UVEC(g_fw_version.lo, 4); nxt_info(19 DOWNTO 16) <= TO_UVEC(g_fw_version.lo, 4);
nxt_info(10) <= cs_sim; nxt_info(10) <= cs_sim;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment