diff options
Diffstat (limited to 'testsuite/pyunit/libghdl/examples')
-rw-r--r-- | testsuite/pyunit/libghdl/examples/comments/process_2.vhdl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testsuite/pyunit/libghdl/examples/comments/process_2.vhdl b/testsuite/pyunit/libghdl/examples/comments/process_2.vhdl new file mode 100644 index 000000000..d5f9be345 --- /dev/null +++ b/testsuite/pyunit/libghdl/examples/comments/process_2.vhdl @@ -0,0 +1,12 @@ +architecture arch of e is + signal s, s_n : bit; +begin + p : process (s) + -- Comment for :p: + + -- For :v: + variable v : boolean; + begin + s <= not s_n; + end process; +end arch; |