From 90f50722ab358d36f2dacccc21b510be25153a87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joachim=20Stro=CC=88mbergson?= Date: Wed, 23 Apr 2025 17:13:37 +0200 Subject: [PATCH] Change to blocking assignments in non-clocked process. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Joachim Strömbergson --- techlibs/gatemate/cells_sim.v | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/techlibs/gatemate/cells_sim.v b/techlibs/gatemate/cells_sim.v index e05ce811c..d930b83f8 100644 --- a/techlibs/gatemate/cells_sim.v +++ b/techlibs/gatemate/cells_sim.v @@ -292,10 +292,10 @@ module CC_DLT #( always @(*) begin if (sr) begin - Q <= SR_VAL; + Q = SR_VAL; end else if (en) begin - Q <= D; + Q = D; end end @@ -407,7 +407,7 @@ module CC_MULT #( ); always @(*) begin - P <= A * B; + P = A * B; end endmodule