From 61387d78b7243c10fee247f8a6c4e1fc1a6a5659 Mon Sep 17 00:00:00 2001 From: Patrick Urban Date: Mon, 5 Jun 2023 19:08:44 +0200 Subject: [PATCH] gatemate: Prevent implicit declaration of `ram_{we,en}` --- techlibs/gatemate/cells_sim.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/techlibs/gatemate/cells_sim.v b/techlibs/gatemate/cells_sim.v index 93f463043..e05ce811c 100644 --- a/techlibs/gatemate/cells_sim.v +++ b/techlibs/gatemate/cells_sim.v @@ -1583,8 +1583,8 @@ module CC_FIFO_40K ( assign F_ALMOST_EMPTY = fifo_almost_empty; assign F_WR_ERROR = (F_FULL && (B_EN ^ B_EN_INV) && (B_WE ^ B_WE_INV)); assign F_RD_ERROR = (F_EMPTY && (A_EN ^ A_EN_INV)); - assign ram_we = (~F_FULL && (B_EN ^ B_EN_INV) && (B_WE ^ B_WE_INV)); - assign ram_en = (~F_EMPTY && (A_EN ^ A_EN_INV)); + wire ram_we = (~F_FULL && (B_EN ^ B_EN_INV) && (B_WE ^ B_WE_INV)); + wire ram_en = (~F_EMPTY && (A_EN ^ A_EN_INV)); // Reset synchronizers reg [1:0] aclk_reset_q, bclk_reset_q;