diff --git a/Labs/01. Adder/tb_fulladder.sv b/Labs/01. Adder/tb_fulladder.sv index 1497be9..d48d1e1 100644 --- a/Labs/01. Adder/tb_fulladder.sv +++ b/Labs/01. Adder/tb_fulladder.sv @@ -40,6 +40,8 @@ module tb_fulladder(); initial begin $timeformat(-9, 2, " ns"); + #1; // wait initial line_dump + $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'"); diff --git a/Labs/01. Adder/tb_fulladder32.sv b/Labs/01. Adder/tb_fulladder32.sv index 58ff259..6049afa 100644 --- a/Labs/01. Adder/tb_fulladder32.sv +++ b/Labs/01. Adder/tb_fulladder32.sv @@ -44,6 +44,8 @@ module tb_fulladder32(); initial begin $timeformat(-9, 2, " ns"); + #1; // wait initial line_dump + $display("START simulation of 32-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'"); diff --git a/Labs/01. Adder/tb_fulladder4.sv b/Labs/01. Adder/tb_fulladder4.sv index a247b7e..710904e 100644 --- a/Labs/01. Adder/tb_fulladder4.sv +++ b/Labs/01. Adder/tb_fulladder4.sv @@ -44,6 +44,8 @@ module tb_fulladder4(); initial begin $timeformat(-9, 2, " ns"); + #1; // wait initial line_dump + $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'");