Skip to content

Commit

Permalink
small style changes to appease linter
Browse files Browse the repository at this point in the history
  • Loading branch information
ericjessee authored and JZJisawesome committed Apr 21, 2024
1 parent ff55129 commit 77d9635
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rtl/common/sram/amd_bram.sv
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ generate if (OUTPUT_FLOPS == 1) begin : g_FLOP_OUTPUT
always_ff @(posedge i_rclk) begin
o_rdata <= rdata;
end
end else begin
end else begin : g_NO_FLOP_OUTPUT
assign o_rdata = rdata;
end endgenerate

Expand Down
2 changes: 1 addition & 1 deletion rtl/common/sram/amd_lutram.sv
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ end
* --------------------------------------------------------------------------------------------- */

//This is the only circumstance in which initial blocks are acceptable: on FPGAs with inferred SRAM
generate if (INIT == 1) begin
generate if (INIT == 1) begin: g_READ_MEM
initial begin
$readmemh(INIT_FILE, lutram);
end
Expand Down

0 comments on commit 77d9635

Please sign in to comment.