aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/pyunit/libghdl/examples/comments/process.vhdl
blob: c0b56fe6eabb3d91f7e7b69ae5b77ab8d702cc60 (plain)
1
2
3
4
5
6
7
8
9
architecture arch of e is
  signal s, s_n : bit;
begin
  --  Comment for :p:
  p : process (s)
  begin
    s <= not s_n;
  end process;
end arch;