mirror of
https://github.com/MPSU/APS.git
synced 2025-09-17 01:50:40 +00:00
Revert "Ref(01_Adder):Улучш-ие логирования"
This reverts commit 92147fa303
.
This commit is contained in:
@@ -9,8 +9,6 @@
|
||||
//////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
module tb_fulladder4();
|
||||
timeunit 1ns;
|
||||
timeprecision 1ps;
|
||||
|
||||
parameter TIME_OPERATION = 100;
|
||||
parameter TEST_VALUES = 400;
|
||||
@@ -42,16 +40,14 @@ module tb_fulladder4();
|
||||
assign carry_o_dump = running_line[0];
|
||||
|
||||
initial begin
|
||||
$timeformat(-9, 2, " ns");
|
||||
|
||||
$display("START simulation of 4-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 = TEST_VALUES-1; i >=0 ; i = i - 1 ) begin
|
||||
running_line = line_dump[i*14+:14];
|
||||
#TIME_OPERATION;
|
||||
end
|
||||
$display("FINISH simulation, time == %t", $realtime);
|
||||
for ( i = TEST_VALUES-1; i >=0 ; i = i - 1 )
|
||||
begin
|
||||
running_line = line_dump[i*14+:14];
|
||||
#TIME_OPERATION;
|
||||
end
|
||||
$display("FINISH simulation");
|
||||
$display(
|
||||
"Now you should open the waveform window",
|
||||
"and visually prove correctness of the design"
|
||||
|
Reference in New Issue
Block a user