From 004b2c3bba2292515ceb749c581d1304bdebcb00 Mon Sep 17 00:00:00 2001 From: Andrei Solodovnikov Date: Tue, 19 Sep 2023 11:02:52 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9B=D0=A02.=20=D0=98=D1=81=D0=BF=D1=80=D0=B0?= =?UTF-8?q?=D0=B2=D0=BB=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BF=D0=BE=D0=B4=D0=BA?= =?UTF-8?q?=D0=BB=D1=8E=D1=87=D0=B5=D0=BD=D0=B8=D1=8F=20=D0=90=D0=9B=D0=A3?= =?UTF-8?q?=20=D0=B2=20nexys=5Falu?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../board files/nexys_alu.sv | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Labs/02. Arithmetic-logic unit/board files/nexys_alu.sv b/Labs/02. Arithmetic-logic unit/board files/nexys_alu.sv index 85a2bf6..82db55c 100644 --- a/Labs/02. Arithmetic-logic unit/board files/nexys_alu.sv +++ b/Labs/02. Arithmetic-logic unit/board files/nexys_alu.sv @@ -26,12 +26,12 @@ reg minus; alu_riscv DUT ( - .ALUOp (operator_i), - .A (operand_a_i), - .B (operand_b_i), + .alu_op_i (operator_i), + .a_i (operand_a_i), + .b_i (operand_b_i), - .Result (result_o), - .Flag (comparison_result_o) + .result_o (result_o), + .flag_o (comparison_result_o) ); assign operator_i = SW[4:0]; @@ -93,4 +93,4 @@ always @(posedge CLK100) begin end end -endmodule \ No newline at end of file +endmodule