From e2e8245be9905cf73eb62a3d06ad2668cf9f03b8 Mon Sep 17 00:00:00 2001 From: Lofty Date: Wed, 4 Mar 2026 12:24:13 +0000 Subject: [PATCH] analogdevices: fix MUXF78 name --- techlibs/analogdevices/abc9_model.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/techlibs/analogdevices/abc9_model.v b/techlibs/analogdevices/abc9_model.v index 3958a2bf0..a5a15026f 100644 --- a/techlibs/analogdevices/abc9_model.v +++ b/techlibs/analogdevices/abc9_model.v @@ -25,7 +25,7 @@ // ABC cannot optimise just one of the MUXF7 away // and expect to save on its delay (* abc9_box, lib_whitebox *) -module \$__XILINX_MUXF78 (output O, input I0, I1, I2, I3, S0, S1); +module \$__ANALOGDEVICES_MUXF78 (output O, input I0, I1, I2, I3, S0, S1); assign O = S1 ? (S0 ? I3 : I2) : (S0 ? I1 : I0); specify