Skip to content

Commit

Permalink
Reformat the ariane_pkg to fix synthesis crash (openhwgroup#1750)
Browse files Browse the repository at this point in the history
Modify ariane_pkg.sv following issue openhwgroup#1726.
  • Loading branch information
andriami authored and rohan-10xe committed Jan 23, 2024
1 parent 15fd386 commit 6b9d29a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions core/include/ariane_pkg.sv
Original file line number Diff line number Diff line change
Expand Up @@ -165,9 +165,7 @@ package ariane_pkg;
localparam int unsigned FETCH_WIDTH = 32;
// maximum instructions we can fetch on one request (we support compressed instructions)
localparam int unsigned INSTR_PER_FETCH = RVC == 1'b1 ? (FETCH_WIDTH / 16) : 1;
localparam int unsigned LOG2_INSTR_PER_FETCH = RVC == 1'b1 ? $clog2(
ariane_pkg::INSTR_PER_FETCH
) : 1;
localparam int unsigned LOG2_INSTR_PER_FETCH = RVC == 1'b1 ? $clog2(INSTR_PER_FETCH) : 1;

// ---------------
// Enable BITMANIP
Expand Down

0 comments on commit 6b9d29a

Please sign in to comment.