Skip to content

Commit

Permalink
ЛР1. Исправление тб в листинге 2
Browse files Browse the repository at this point in the history
  • Loading branch information
HepoH3 committed Sep 18, 2024
1 parent a086f66 commit 7abfb67
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Labs/01. Adder/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,10 +153,10 @@ module testbench(); // <- Не имеет ни входов, ни
logic a, b, carry, sum;
half_adder DUT( // <- Подключаем проверяемый модуль
.a_i (a),
.b_i (b),
.carry_o(p),
.sum_o (s)
.a_i (a ),
.b_i (b ),
.carry_o(carry),
.sum_o (sum )
);
initial begin
Expand Down

0 comments on commit 7abfb67

Please sign in to comment.