mirror of
https://github.com/openhwgroup/cva6.git
synced 2025-04-22 21:27:10 -04:00
Add register file to gf22 target for synthesis
This commit is contained in:
parent
8ba152042d
commit
d87ccef3f7
3 changed files with 4 additions and 2 deletions
|
@ -111,4 +111,4 @@ module fifo #(
|
|||
end
|
||||
`endif
|
||||
`endif
|
||||
endmodule
|
||||
endmodule
|
||||
|
|
|
@ -179,6 +179,7 @@ module store_buffer (
|
|||
page_offset_matches_o = 1'b0;
|
||||
// check if the LSBs are identical and the entry is valid
|
||||
for (int unsigned i = 0; i < DEPTH; i++) begin
|
||||
// Check if the page offset matches and whether the entry is valid
|
||||
if ((page_offset_i[11:3] == commit_queue_q[i].address[11:3]) && commit_queue_q[i].valid) begin
|
||||
page_offset_matches_o = 1'b1;
|
||||
break;
|
||||
|
@ -219,4 +220,4 @@ module store_buffer (
|
|||
else $error ("You are trying to commit and flush in the same cycle");
|
||||
`endif
|
||||
`endif
|
||||
endmodule
|
||||
endmodule
|
||||
|
|
|
@ -41,6 +41,7 @@ ariane:
|
|||
riscv_regfile_rtl:
|
||||
targets: [
|
||||
rtl,
|
||||
gf22,
|
||||
]
|
||||
incdirs: [
|
||||
include,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue