mirror of
https://github.com/openhwgroup/cva6.git
synced 2025-04-22 21:27:10 -04:00
Fix minstret (#2471)
This commit is contained in:
parent
faf4536b37
commit
0d2097be0c
2 changed files with 4 additions and 4 deletions
|
@ -1,2 +1,2 @@
|
|||
cv32a65x:
|
||||
gates: 171460
|
||||
gates: 170380
|
||||
|
|
|
@ -1062,7 +1062,7 @@ module cva6
|
|||
.*
|
||||
);
|
||||
|
||||
assign commit_ack = commit_ack_commit_id & ~commit_drop_id_commit;
|
||||
assign commit_ack = commit_macro_ack & ~commit_drop_id_commit;
|
||||
|
||||
// ---------
|
||||
// CSR
|
||||
|
@ -1078,7 +1078,7 @@ module cva6
|
|||
.flush_o (flush_csr_ctrl),
|
||||
.halt_csr_o (halt_csr_ctrl),
|
||||
.commit_instr_i (commit_instr_id_commit),
|
||||
.commit_ack_i (commit_macro_ack),
|
||||
.commit_ack_i (commit_ack),
|
||||
.boot_addr_i (boot_addr_i[CVA6Cfg.VLEN-1:0]),
|
||||
.hart_id_i (hart_id_i[CVA6Cfg.XLEN-1:0]),
|
||||
.ex_i (ex_commit),
|
||||
|
@ -1715,7 +1715,7 @@ module cva6
|
|||
|
||||
.lsu_ctrl_i (rvfi_lsu_ctrl),
|
||||
.wbdata_i (wbdata_ex_id),
|
||||
.commit_ack_i(commit_macro_ack),
|
||||
.commit_ack_i(commit_ack),
|
||||
.mem_paddr_i (rvfi_mem_paddr),
|
||||
.debug_mode_i(debug_mode),
|
||||
.wdata_i (wdata_commit_id),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue