diff options
Diffstat (limited to 'testsuite/pyunit/libghdl/examples/comments/process.vhdl')
-rw-r--r-- | testsuite/pyunit/libghdl/examples/comments/process.vhdl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/testsuite/pyunit/libghdl/examples/comments/process.vhdl b/testsuite/pyunit/libghdl/examples/comments/process.vhdl new file mode 100644 index 000000000..c0b56fe6e --- /dev/null +++ b/testsuite/pyunit/libghdl/examples/comments/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; |