T
titi
Guest
In the following example, what would do the xxx assignment?
What would be the effect of removing the xxx and doing direct assignment?
process(Reset,Pulse,e1,Val)
begin
if Reset ='1' then
result <= "0000";
elsif Pulse ='1' and Val = 25 then
xxx <= e1(3 downto 0);
result <= xxx;
end if;
end process;
What would be the effect of removing the xxx and doing direct assignment?
process(Reset,Pulse,e1,Val)
begin
if Reset ='1' then
result <= "0000";
elsif Pulse ='1' and Val = 25 then
xxx <= e1(3 downto 0);
result <= xxx;
end if;
end process;