- fix missing brackets
This commit is contained in:
parent
258d63d476
commit
fac01cee1c
|
@ -1909,7 +1909,7 @@ module picorv32 #(
|
||||||
|
|
||||||
if (ENABLE_IRQ) begin
|
if (ENABLE_IRQ) begin
|
||||||
next_irq_pending = next_irq_pending | irq;
|
next_irq_pending = next_irq_pending | irq;
|
||||||
if ENABLE_IRQ_TIMER && timer
|
if(ENABLE_IRQ_TIMER && timer)
|
||||||
if (timer - 1 == 0)
|
if (timer - 1 == 0)
|
||||||
next_irq_pending[irq_timer] = 1;
|
next_irq_pending[irq_timer] = 1;
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue