J
jaypt@hotmail.com
Guest
Could anyone explain the meaning of
out0 <= (others => '0');
in the following VHDL code
if reset = '1' then
out0 <= (others => '0');
out1 <= (others => '0');
else
out0 <= in0;
out1 <= in1;
end if;
Thanks,
jay
out0 <= (others => '0');
in the following VHDL code
if reset = '1' then
out0 <= (others => '0');
out1 <= (others => '0');
else
out0 <= in0;
out1 <= in1;
end if;
Thanks,
jay