V
Valentin Tihomirov
Guest
The question may a bit silly one but anyway... Assuming the process is
synchronous.
(a)
Ack <= Loading;
(b)
if Loading = '1' then
Ack <= '1';
else
Ack <= '0';
end if;
or the same
Ack <= '0';
if Loading = '1' then
Ack <= '1';
end if;
The first should assign a signal directly while second assigns an output of
a mux.
synchronous.
(a)
Ack <= Loading;
(b)
if Loading = '1' then
Ack <= '1';
else
Ack <= '0';
end if;
or the same
Ack <= '0';
if Loading = '1' then
Ack <= '1';
end if;
The first should assign a signal directly while second assigns an output of
a mux.