Skip to content

Commit

Permalink
Merge pull request #90 from siliconcompiler/rename_ram_impl_instances
Browse files Browse the repository at this point in the history
Fix Verilator Warnings
  • Loading branch information
petergrossmann21 authored Nov 19, 2024
2 parents 29c23dc + 0b7bec5 commit fce9df2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lambdalib/ramlib/rtl/la_dpram.v
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ module la_dpram #(
.PROP (PROP),
.CTRLW (CTRLW),
.TESTW (TESTW)
) ram (
) memory (
.wr_clk (wr_clk),
.wr_ce (wr_ce),
.wr_we (wr_we),
Expand Down
2 changes: 1 addition & 1 deletion lambdalib/ramlib/rtl/la_spram.v
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ module la_spram #(
.PROP (PROP),
.CTRLW (CTRLW),
.TESTW (TESTW)
) ram (
) memory (
.clk (clk),
.ce (ce),
.we (we),
Expand Down

0 comments on commit fce9df2

Please sign in to comment.