blob: d64421a35fa417544093390c94ff9786a61998ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
|