diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-10-07 18:26:32 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-10-07 18:26:32 +0200 |
commit | 8d3778ffbb30ecb023bd1989d938f6cf83e1436c (patch) | |
tree | a4a9cd5c3bb458d8c58faa0afb7da7f4145d975d /testsuite/synth/pkg01/pkg.vhdl | |
parent | 27ce4a93d4bfc66dc50eadcf59375b4ac541c66a (diff) | |
download | ghdl-8d3778ffbb30ecb023bd1989d938f6cf83e1436c.tar.gz ghdl-8d3778ffbb30ecb023bd1989d938f6cf83e1436c.tar.bz2 ghdl-8d3778ffbb30ecb023bd1989d938f6cf83e1436c.zip |
testsuite/synth: add pkg01
Diffstat (limited to 'testsuite/synth/pkg01/pkg.vhdl')
-rw-r--r-- | testsuite/synth/pkg01/pkg.vhdl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/testsuite/synth/pkg01/pkg.vhdl b/testsuite/synth/pkg01/pkg.vhdl new file mode 100644 index 000000000..a3c226786 --- /dev/null +++ b/testsuite/synth/pkg01/pkg.vhdl @@ -0,0 +1,6 @@ +library ieee; +use ieee.std_logic_1164.all; + +package pkg is + constant mask : std_logic_vector (7 downto 0) := x"0f"; +end pkg; |