mirror of
https://github.com/openhwgroup/cva5.git
synced 2025-04-22 21:17:46 -04:00
tool inferrence changes
This commit is contained in:
parent
19783dae56
commit
004c97adc9
1 changed files with 4 additions and 6 deletions
|
@ -139,12 +139,10 @@ module renamer
|
|||
|
||||
////////////////////////////////////////////////////
|
||||
//Renamed Outputs
|
||||
always_comb begin
|
||||
for (int i = 0; i < REGFILE_READ_PORTS; i++) begin
|
||||
decode.phys_rs_addr[i] = speculative_rd_to_phys_table[decode.rs_addr[i]];
|
||||
decode.rs_wb_group[i] = spec_wb_group[decode.rs_addr[i]];
|
||||
end
|
||||
end
|
||||
generate for (genvar i = 0; i < REGFILE_READ_PORTS; i++) begin
|
||||
assign decode.phys_rs_addr[i] = speculative_rd_to_phys_table[decode.rs_addr[i]];
|
||||
assign decode.rs_wb_group[i] = spec_wb_group[decode.rs_addr[i]];
|
||||
end endgenerate
|
||||
|
||||
assign decode.phys_rd_addr = rename_valid ? free_list.data_out : '0;
|
||||
////////////////////////////////////////////////////
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue