From da422cfccb37bce3850bd16c4a1beec417fe726f Mon Sep 17 00:00:00 2001 From: Andrei Solodovnikov Date: Tue, 19 May 2026 14:17:31 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=B8=D0=BC=D0=B5=D0=BD=D0=B8=20?= =?UTF-8?q?=D0=BC=D0=BE=D0=B4=D1=83=D0=BB=D1=8F=20=D0=B2=20=D0=BF=D1=80?= =?UTF-8?q?=D0=B8=D0=BC=D0=B5=D1=80=D0=B5=20FAQ?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix the instantiation of the adder module in the testbench. --- Other/FAQ.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Other/FAQ.md b/Other/FAQ.md index c9208a6..6505e71 100644 --- a/Other/FAQ.md +++ b/Other/FAQ.md @@ -139,7 +139,7 @@ endmodule module testbench(); logic A, B, C; -adder DUT( +half_adder DUT( .A(A), // <- здесь будет ошибка, // т.к. в модуле half_adder нет порта 'A' .b(B),