diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2022-12-05 21:39:51 +0100 |
---|---|---|
committer | tgingold <tgingold@users.noreply.github.com> | 2022-12-06 07:23:44 +0100 |
commit | 9824b3c9a8d2103a5ecd77ff957536fa16c24bbf (patch) | |
tree | 5e870dfeaed5db9899a20bb5e10b963333bcc487 /testsuite/pyunit/libghdl/examples/comments/ent_inside.vhdl | |
parent | 60c43acaf82696dabdbf8a88138a656a9bde982c (diff) | |
download | ghdl-9824b3c9a8d2103a5ecd77ff957536fa16c24bbf.tar.gz ghdl-9824b3c9a8d2103a5ecd77ff957536fa16c24bbf.tar.bz2 ghdl-9824b3c9a8d2103a5ecd77ff957536fa16c24bbf.zip |
Reorganized testcases.
Diffstat (limited to 'testsuite/pyunit/libghdl/examples/comments/ent_inside.vhdl')
-rw-r--r-- | testsuite/pyunit/libghdl/examples/comments/ent_inside.vhdl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/testsuite/pyunit/libghdl/examples/comments/ent_inside.vhdl b/testsuite/pyunit/libghdl/examples/comments/ent_inside.vhdl new file mode 100644 index 000000000..834eaa999 --- /dev/null +++ b/testsuite/pyunit/libghdl/examples/comments/ent_inside.vhdl @@ -0,0 +1,15 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity e2 is + -- comments in design units (python doc-string style) :e2: + -- might be multi line :e2: + generic ( + -- comment before a generic :frequency: + -- might be multiline :frequency: + constant FREQUENCY : positive + ); + port ( + signal Clock : in std_logic + ); +end entity; |