소스 검색

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;