V
valentin tihomirov
Guest
if Rising_Edge(Clk) then
if RESET = '1' then
ERROR_CODE <= (others => '0');
elsif ENABLE = '1' then
...
or
if Rising_Edge(Clk) then
if ENABLE = '1' then
if RESET = '1' then
ERROR_CODE <= (others => '0');
else
...
if RESET = '1' then
ERROR_CODE <= (others => '0');
elsif ENABLE = '1' then
...
or
if Rising_Edge(Clk) then
if ENABLE = '1' then
if RESET = '1' then
ERROR_CODE <= (others => '0');
else
...