blob: dca7e15dc0757e92aac0ec5b54bb50d427036db3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
-- Documentation before pack_1
package pack_1 is
-- Global constant const_1
constant const_1 : boolean := false;
end package;
package body pack_1 is
constant const_2 : boolean := true;
end package body;
|