소스 검색

Add more examples

Jonatan Gezelius 4 년 전
부모
커밋
f58e2e3276
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. 10 0
      testbench/ha_tb.vhd

+ 10 - 0
testbench/ha_tb.vhd

@@ -54,7 +54,17 @@ begin
     report "Shit!";
     wait until r = '1';
     report "It happened!";
+
+    for i in 3 to 6 loop
+      report "Currently at " & integer'image(i);
+      wait for 1 ns;
+    end loop;
+
+    report "At end of test process!";
     wait;
   end process;
+
+  -- Invalid report in concurrent statement
+  --report "when is this?";
   
 end architecture;