blob: fa566390385c070125e65d10de29b00c54ab7d96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
entity tb is
end entity;
architecture sim of tb is
signal clk : std_logic := '1';
begin
clk <= not clk after 100 ms; -- period / 2;
process is
begin
wait until rising_edge(clk);
end process;
end architecture;
|