瀏覽代碼

Add wait until example

Jonatan Gezelius 4 年之前
父節點
當前提交
d2ab6b16c9
共有 1 個文件被更改,包括 8 次插入1 次删除
  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;