mirror of
https://github.com/lowRISC/ibex.git
synced 2025-04-24 22:07:43 -04:00
[ibex/rtl] Remove duplicate check for irq_fast[5]
Currently in ibex_controller.sv when generating the ID of any fast interrupts, irq_fast[5] is checked for twice. This is a redundant line, and so this PR simply removes it. Signed-off-by: Udi <udij@google.com>
This commit is contained in:
parent
9eebf52590
commit
b1531f2e38
1 changed files with 0 additions and 1 deletions
|
@ -337,7 +337,6 @@ module ibex_controller #(
|
|||
else if (irqs_i.irq_fast[ 7]) mfip_id = 4'd7;
|
||||
else if (irqs_i.irq_fast[ 6]) mfip_id = 4'd6;
|
||||
else if (irqs_i.irq_fast[ 5]) mfip_id = 4'd5;
|
||||
else if (irqs_i.irq_fast[ 5]) mfip_id = 4'd5;
|
||||
else if (irqs_i.irq_fast[ 4]) mfip_id = 4'd4;
|
||||
else if (irqs_i.irq_fast[ 3]) mfip_id = 4'd3;
|
||||
else if (irqs_i.irq_fast[ 2]) mfip_id = 4'd2;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue