Skip to content
Snippets Groups Projects
Commit 8ce3642f authored by Alban Gruin's avatar Alban Gruin
Browse files

ariane_pkg: reduce REG_ADDR_SIZE if renaming is disabled


Signed-off-by: default avatarAlban Gruin <alban.gruin@irit.fr>
parent ae076380
No related branches found
Tags
No related merge requests found
......@@ -219,7 +219,7 @@ package ariane_pkg;
| ((riscv::XLEN == 64 ? 2 : 1) << riscv::XLEN-2); // MXL
// 32 registers + 1 bit for re-naming = 6
localparam REG_ADDR_SIZE = 6;
localparam REG_ADDR_SIZE = (ENABLE_RENAME) ? 6 : 5;
localparam NR_WB_PORTS = 5;
// static debug hartinfo
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment