blob: 392e92380263921dfcf7ae755da44a6ad4e8dcbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
entity testcase is
port(clk: in bit);
begin
check: process is
begin
-- Require at least 10ns between clock edges
assert clk'delayed'last_event >= 10 ns;
wait on clk;
end process check;
end entity testcase;
-- Keep the compiler happy
architecture empty of testcase is
begin
end architecture empty;
|