Skip to content

Commit

Permalink
Fix ariane_pkg comments
Browse files Browse the repository at this point in the history
  • Loading branch information
cathales authored and JeanRochCoulon committed Aug 21, 2023
1 parent b90c6c3 commit 259d299
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/include/ariane_pkg.sv
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ package ariane_pkg;
// Extract Src/Dst FP Reg from Op
// -------------------------------
// function used in instr_trace svh
// is_rd_fpr function is kept to allow cva6 compilation with instr_trace feature
// is_rs1_fpr function is kept to allow cva6 compilation with instr_trace feature
function automatic logic is_rs1_fpr (input fu_op op);
return is_rs1_fpr_cfg (op, 1);
endfunction
Expand All @@ -533,7 +533,7 @@ package ariane_pkg;
endfunction

// function used in instr_trace svh
// is_rd_fpr function is kept to allow cva6 compilation with instr_trace feature
// is_rs2_fpr function is kept to allow cva6 compilation with instr_trace feature
function automatic logic is_rs2_fpr (input fu_op op);
return is_rs2_fpr_cfg (op, 1);
endfunction
Expand All @@ -556,7 +556,7 @@ package ariane_pkg;
endfunction

// function used in instr_trace svh
// is_rd_fpr function is kept to allow cva6 compilation with instr_trace feature
// is_imm_fpr function is kept to allow cva6 compilation with instr_trace feature
// ternary operations encode the rs3 address in the imm field, also add/sub
function automatic logic is_imm_fpr (input fu_op op);
return is_imm_fpr_cfg (op, 1);
Expand Down

0 comments on commit 259d299

Please sign in to comment.