From 3a2948c16621db58c260ba4743940eaf27c3dcf8 Mon Sep 17 00:00:00 2001 From: Marno van der Maas Date: Tue, 7 May 2024 14:23:16 +0100 Subject: [PATCH] Fix RAM config width to avoid Vivado warning --- rtl/system/sonata_system.sv | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rtl/system/sonata_system.sv b/rtl/system/sonata_system.sv index 5c1b20d36..00097de5d 100644 --- a/rtl/system/sonata_system.sv +++ b/rtl/system/sonata_system.sv @@ -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), @@ -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), @@ -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 (),