Update tb_fulladder.sv

This commit is contained in:
Andrei Solodovnikov
2024-02-09 10:15:46 +03:00
committed by GitHub
parent 998b36e57a
commit 23679c20f2

View File

@@ -20,14 +20,14 @@ parameter TEST_VALUES = 8;
wire tb_sum_o;
/* fulladder DUT (
fulladder DUT (
.a_i(tb_a_i),
.b_i(tb_b_i),
.sum_o(tb_sum_o),
.carry_i(tb_carry_i),
.carry_o(tb_carry_o)
);
*/
integer i, err_count = 0;
reg [4:0] running_line;
reg [5*8-1:0] line_dump;