Skip to content

Commit

Permalink
Fix verible format error
Browse files Browse the repository at this point in the history
  • Loading branch information
Caaliph Andriamisaina committed Jan 8, 2024
1 parent b236555 commit 4bf1036
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(
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 4bf1036

Please sign in to comment.