From d903badf3c90725fbc6ef8ad76515c7410b5c1ca Mon Sep 17 00:00:00 2001 From: Andrei Solodovnikov Date: Tue, 2 Dec 2025 10:44:01 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9B=D0=A011.=20=D0=98=D1=81=D0=BF=D1=80?= =?UTF-8?q?=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BF=D1=80=D0=BE?= =?UTF-8?q?=D0=B2=D0=B5=D1=80=D0=BA=D0=B8=20=D0=BD=D0=B0=20=D1=81=D0=BB?= =?UTF-8?q?=D1=83=D1=87=D0=B0=D0=B9=20=D0=BD=D0=B5=D0=BF=D0=BE=D0=B4=D0=BA?= =?UTF-8?q?=D0=BB=D1=8E=D1=87=D0=B5=D0=BD=D0=BD=D0=BE=D0=B3=D0=BE=20=D1=81?= =?UTF-8?q?=D0=B8=D0=B3=D0=BD=D0=B0=D0=BB=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Labs/11. Interrupt integration/lab_11.tb_processor_system.sv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Labs/11. Interrupt integration/lab_11.tb_processor_system.sv b/Labs/11. Interrupt integration/lab_11.tb_processor_system.sv index f937666..f10182c 100644 --- a/Labs/11. Interrupt integration/lab_11.tb_processor_system.sv +++ b/Labs/11. Interrupt integration/lab_11.tb_processor_system.sv @@ -36,7 +36,7 @@ module lab_11_tb_processor_system(); rst = 0; repeat(20)@(posedge clk); DUT.irq_req = 1; - while(DUT.irq_ret == 0) begin + while(DUT.irq_ret !== 1) begin @(posedge clk); end DUT.irq_req = 0;