Skip to content

Commit

Permalink
Fix Lint from André's feedbacks
Browse files Browse the repository at this point in the history
  • Loading branch information
JeanRochCoulon committed Aug 21, 2023
1 parent 259d299 commit bcd19ce
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion core/include/config_pkg.sv
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2022 Thales DIS design services SAS
// Copyright 2023 Thales DIS France SAS
//
// Licensed under the Solderpad Hardware Licence, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion core/issue_stage.sv
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

module issue_stage import ariane_pkg::*; #(
parameter config_pkg::cva6_cfg_t CVA6Cfg = config_pkg::cva6_cfg_empty,
parameter bit IsRVFI = 0,
parameter bit IsRVFI = bit'(0),
parameter int unsigned NR_ENTRIES = 8
)(
input logic clk_i, // Clock
Expand Down
2 changes: 1 addition & 1 deletion core/scoreboard.sv
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

module scoreboard #(
parameter config_pkg::cva6_cfg_t CVA6Cfg = config_pkg::cva6_cfg_empty,
parameter bit IsRVFI = 0,
parameter bit IsRVFI = bit'(0),
parameter type rs3_len_t = logic,
parameter int unsigned NR_ENTRIES = 8 // must be a power of 2
) (
Expand Down
2 changes: 1 addition & 1 deletion corev_apu/src/ariane.sv
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

module ariane import ariane_pkg::*; #(
parameter config_pkg::cva6_cfg_t CVA6Cfg = config_pkg::cva6_cfg_empty,
parameter bit IsRVFI = 1'b0,
parameter bit IsRVFI = bit'(0),
parameter type rvfi_instr_t = logic,
//
parameter ariane_pkg::ariane_cfg_t ArianeCfg = ariane_pkg::ArianeDefaultConfig,
Expand Down

0 comments on commit bcd19ce

Please sign in to comment.