diff --git a/src/fifo.sv b/src/fifo.sv index f6e073197..fa96c6fbb 100644 --- a/src/fifo.sv +++ b/src/fifo.sv @@ -111,4 +111,4 @@ module fifo #( end `endif `endif -endmodule \ No newline at end of file +endmodule diff --git a/src/store_buffer.sv b/src/store_buffer.sv index 83c3f8720..226506b78 100644 --- a/src/store_buffer.sv +++ b/src/store_buffer.sv @@ -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 \ No newline at end of file +endmodule diff --git a/src_files.yml b/src_files.yml index 4f94573d8..777b18f00 100644 --- a/src_files.yml +++ b/src_files.yml @@ -41,6 +41,7 @@ ariane: riscv_regfile_rtl: targets: [ rtl, + gf22, ] incdirs: [ include,