Commit 8cc13a10 authored by Jan Pospisil's avatar Jan Pospisil Committed by Dimitris Lampridis

gc_serial_dac: removed synchronous reset from sensitivity lists

Signed-off-by: 's avatarDimitris Lampridis <Dimitris.Lampridis@cern.ch>
parent bebe354f
......@@ -120,7 +120,7 @@ begin
iValidValue <= load_i;
process(clk_i, rst_n_i)
process(clk_i)
begin
if rising_edge(clk_i) then
if rst_n_i = '0' then
......@@ -153,7 +153,7 @@ begin
end process;
process(clk_i, rst_n_i)
process(clk_i)
begin
if rising_edge(clk_i) then
if rst_n_i = '0' then
......@@ -170,7 +170,7 @@ begin
end if;
end process;
process(clk_i, rst_n_i)
process(clk_i)
begin
if rising_edge(clk_i) then
if rst_n_i = '0' then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment