Revert "Ref(01_Adder):Улучш-ие логирования"

This reverts commit 92147fa303.
This commit is contained in:
alexkharl
2024-02-12 11:25:26 +03:00
parent 570f967082
commit 4b015a6363
3 changed files with 30 additions and 31 deletions

View File

@@ -9,10 +9,9 @@
//////////////////////////////////////////////////////////////////////////////////
module tb_fulladder();
timeunit 1ns;
timeprecision 1ps;
parameter TIME_OPERATION = 100;
parameter TEST_VALUES = 8;
parameter TIME_OPERATION = 100;
parameter TEST_VALUES = 8;
wire tb_a_i;
wire tb_b_i;
@@ -38,16 +37,13 @@ module tb_fulladder();
assign tb_carry_i = running_line[2];
initial begin
$timeformat(-9, 2, " ns");
$display("START simulation of 1-bit fulladder.");
$display("You should run simmulation until the message 'FINISH simulation' appears in the log.");
$display("If you don't see the message then click the button 'Run All'");
for (i = 0; i < TEST_VALUES; i = i + 1) begin
running_line = line_dump[i*5+:5];
#TIME_OPERATION;
end
$display("FINISH simulation, time == %t", $realtime);
$display("FINISH simulation");
$display(
"Now you should open the waveform window",
"and visually prove correctness of the design"