Warning L69/C0 : #0 Warning: Only simple variables are checked in the sensitivity list. The variable in the sensitivity list on line 69 will be ignored. (HDL-178)
-- Added for workaround ******************************* signal dummy_net : std_logic;
begin -- Added for workaround ****************************** dummy_net <= is_sel(0);
-- original sensitivity list -- process (cfg, is_sel(0)) -- workaround sensitivity list - uses redirected signal for bus slice ******* process (cfg, dummy_net)
begin if cfg='1' then
-- original assignment -- db(2) <= is_sel(0); -- Redirected Bus bit used in place of slice - workaround **** db(2) <= dummy_net;