blob: 39e74c973d8641ccf1c473d0ef080759752433f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
entity print1 is
end;
architecture behav of print1 is
-- Check comment 1
-- Check comment 2
-- Check long declaration indentation
constant bv1 : bit_vector :=
"0010001";
constant bv2 : bit_vector := x"af";
-- Trailing comment
begin
/* A long comment
for vhdl 08
*/
process
begin
if(true/=false)
then
report "OK";
end if;
end process;
end behav;
|