From 3d353df33833e1a6ba0aacd2ed91acf71cf62155 Mon Sep 17 00:00:00 2001 From: Yvan Tortorella Date: Tue, 23 Jan 2024 14:51:48 +0100 Subject: [PATCH] Remove fatal message from ECC wrapper to prevent Synopsys complains. --- common/local/util/ecc_wrap.sv | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/common/local/util/ecc_wrap.sv b/common/local/util/ecc_wrap.sv index 6e83848fa7..c1be8f387b 100644 --- a/common/local/util/ecc_wrap.sv +++ b/common/local/util/ecc_wrap.sv @@ -84,7 +84,6 @@ end else if (Encoding == "Hamming") begin: gen_hamming_ecc ); assign syndrome_o = {rdata_i[EccDataWidth-1], syndrome}; -end else begin - $fatal("%s encoding not supported!", Encoding); end + endmodule: ecc_wrap