Skip to content
Snippets Groups Projects
Commit c4e68c40 authored by Wesley W. Terpstra's avatar Wesley W. Terpstra
Browse files

wb_irq: correct obvious typo

Comparing std_logic <= '0' seems to work!
However, it is certainly not what the author intended.
parent 45cf9797
Branches
Tags
No related merge requests found
......@@ -153,7 +153,7 @@ s_irq <= irq_i or r_swirq;
variable v_ch_sl : natural range g_channels-1 downto 0;
begin
if rising_edge(clk_i) then
if(rst_n_i = '0' or r_rst_n <= '0') then
if(rst_n_i = '0' or r_rst_n = '0') then
r_c_ack <= '0';
r_c_err <= '0';
r_rst_n <= '1';
......
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