Fixes recursion bug in disambiguate_in().
[ohcount] / test / expected_dir / vhdl1.vhdl
1 vhdl    code    library ieee;
2 vhdl    code    use ieee.std_logic_1164.all;
3 vhdl    blank   
4 vhdl    code    entity tb is
5 vhdl    code    end tb;
6 vhdl    blank   
7 vhdl    code    architecture behav of tb is
8 vhdl    blank   
9 vhdl    comment   -- toggle period
10 vhdl    code      constant period_c : time := 1 ms;
11 vhdl    blank   
12 vhdl    comment   -- we'll be poking on this signal
13 vhdl    code      signal toggle_s : std_logic_vector(1 downto 0) := "01";
14 vhdl    blank   
15 vhdl    code    begin
16 vhdl    blank   
17 vhdl    comment   -----------------------------------------------------------------------------
18 vhdl    comment   -- Process toggle
19 vhdl    comment   --
20 vhdl    comment   -- Purpose:
21 vhdl    comment   --   Flip the toggle_s signal periodically.
22 vhdl    comment   --
23 vhdl    code      toggle: process
24 vhdl    code      begin
25 vhdl    blank   
26 vhdl    code        wait for period_c/2;
27 vhdl    code        toggle_s <= not toggle_s;
28 vhdl    blank   
29 vhdl    code      end process toggle;
30 vhdl    comment   --
31 vhdl    comment   -----------------------------------------------------------------------------
32 vhdl    blank   
33 vhdl    code    end behav;
34 vhdl    blank   
35 vhdl    code    configuration tb_behav_c0 of tb is
36 vhdl    blank   
37 vhdl    code      for behav
38 vhdl    code      end for;
39 vhdl    blank   
40 vhdl    code    end tb_behav_c0;