Skip to content

Commit

Permalink
lint fixes2
Browse files Browse the repository at this point in the history
  • Loading branch information
farhan-108 committed Dec 11, 2024
1 parent c36df2d commit a6cf9ed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion core/compressed_decoder.sv
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ module compressed_decoder #(
is_compressed_o = 1'b1;
instr_o = instr_i;
is_macro_instr_o = 0;
is_zcmt_instr_o = 1'b0;;
is_zcmt_instr_o = 1'b0;

// I: | imm[11:0] | rs1 | funct3 | rd | opcode |
// S: | imm[11:5] | rs2 | rs1 | funct3 | imm[4:0] | opcode |
Expand Down
6 changes: 3 additions & 3 deletions core/id_stage.sv
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,9 @@ module id_stage #(
logic [CVA6Cfg.NrIssuePorts-1:0] is_macro_instr_i;
logic stall_instr_fetch;
logic stall_macro_deco, stall_macro_deco_zcmp, stall_macro_deco_zcmt;
logic is_last_macro_instr_o;
logic is_double_rd_macro_instr_o;
logic [CVA6Cfg.NrIssuePorts-1:0] is_zcmt_instr_i;
logic is_last_macro_instr_o;
logic is_double_rd_macro_instr_o;
logic [CVA6Cfg.NrIssuePorts-1:0] is_zcmt_instr_i;

if (CVA6Cfg.RVC) begin
// ---------------------------------------------------------
Expand Down

0 comments on commit a6cf9ed

Please sign in to comment.