diff options
author | Tristan Gingold <tgingold@free.fr> | 2022-11-23 07:56:08 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2022-11-23 07:56:08 +0100 |
commit | d2a0fe9e9c097a5130a6d6a6f2c8c76bf4394ae0 (patch) | |
tree | 3aea731d1ada912ff5841d7e45d2dfa3425bfeb9 /testsuite/pyunit/libghdl/process.vhdl | |
parent | 877e9797d7efbc252e77ad05b9c99e18e555b03a (diff) | |
download | ghdl-d2a0fe9e9c097a5130a6d6a6f2c8c76bf4394ae0.tar.gz ghdl-d2a0fe9e9c097a5130a6d6a6f2c8c76bf4394ae0.tar.bz2 ghdl-d2a0fe9e9c097a5130a6d6a6f2c8c76bf4394ae0.zip |
testsuite/pyunit/libghdl: add tests for process comments
Diffstat (limited to 'testsuite/pyunit/libghdl/process.vhdl')
-rw-r--r-- | testsuite/pyunit/libghdl/process.vhdl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/testsuite/pyunit/libghdl/process.vhdl b/testsuite/pyunit/libghdl/process.vhdl new file mode 100644 index 000000000..c0b56fe6e --- /dev/null +++ b/testsuite/pyunit/libghdl/process.vhdl @@ -0,0 +1,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; |