Skip to content

Commit

Permalink
Fix RAM config width to avoid Vivado warning
Browse files Browse the repository at this point in the history
  • Loading branch information
marnovandermaas committed May 7, 2024
1 parent f886051 commit 3a2948c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rtl/system/sonata_system.sv
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,7 @@ module sonata_system #(
i2c u_i2c0(
.clk_i (clk_sys_i),
.rst_ni (rst_sys_ni),
.ram_cfg_i ('b0),
.ram_cfg_i (10'b0),

// Bus Interface
.tl_i (tl_i2c0_h2d),
Expand Down Expand Up @@ -824,7 +824,7 @@ module sonata_system #(
i2c u_i2c1(
.clk_i (clk_sys_i),
.rst_ni (rst_sys_ni),
.ram_cfg_i ('b0),
.ram_cfg_i (10'b0),

// Bus Interface
.tl_i (tl_i2c1_h2d),
Expand Down Expand Up @@ -942,7 +942,7 @@ module sonata_system #(
.usb_ref_val_o (),
.usb_ref_pulse_o (),

.ram_cfg_i ('b0),
.ram_cfg_i (10'b0),

// Interrupts not required
.intr_pkt_received_o (),
Expand Down

0 comments on commit 3a2948c

Please sign in to comment.