From e4d6781088d601828fb2eb7ec4a43727b3893692 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joachim=20Stro=CC=88mbergson?= Date: Wed, 23 Apr 2025 16:59:53 +0200 Subject: [PATCH] Changing non clocked alway assignment to blocking. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Joachim Strömbergson --- techlibs/ecp5/cells_sim.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/techlibs/ecp5/cells_sim.v b/techlibs/ecp5/cells_sim.v index 950d12c91..eec211d6b 100644 --- a/techlibs/ecp5/cells_sim.v +++ b/techlibs/ecp5/cells_sim.v @@ -386,7 +386,7 @@ module TRELLIS_IO( ); parameter DIR = "INPUT"; reg T_pd; - always @(*) if (T === 1'bz) T_pd <= 1'b0; else T_pd <= T; + always @(*) if (T === 1'bz) T_pd = 1'b0; else T_pd = T; generate if (DIR == "INPUT") begin