Skip to content

Commit

Permalink
Add parameter name to sys_vector_vlen_exp and sys_vector_elen_exp
Browse files Browse the repository at this point in the history
  • Loading branch information
jordancarlin committed Oct 21, 2024
1 parent 2a2a950 commit c55eb39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions c_emulator/riscv_platform.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,12 @@ uint64_t sys_pmp_grain(unit u)
return rv_pmp_grain;
}

uint64_t sys_vector_vlen_exp(unit)
uint64_t sys_vector_vlen_exp(unit u)
{
return rv_vector_vlen_exp;
}

uint64_t sys_vector_elen_exp(unit)
uint64_t sys_vector_elen_exp(unit u)
{
return rv_vector_elen_exp;
}
Expand Down

0 comments on commit c55eb39

Please sign in to comment.