Pārlūkot izejas kodu

Add wait until example

Jonatan Gezelius 4 gadi atpakaļ
vecāks
revīzija
d2ab6b16c9
1 mainītis faili ar 8 papildinājumiem un 1 dzēšanām
  1. 8 1
      testbench/ha_tb.vhd

+ 8 - 1
testbench/ha_tb.vhd

@@ -48,6 +48,13 @@ begin
     
     wait;
   end process;
-  
+
+  process is
+  begin
+    report "Shit!";
+    wait until r = '1';
+    report "It happened!";
+    wait;
+  end process;
   
 end architecture;