diff options
Diffstat (limited to 'testsuite/synth/dispin01/pkg_rec01.vhdl')
-rw-r--r-- | testsuite/synth/dispin01/pkg_rec01.vhdl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/testsuite/synth/dispin01/pkg_rec01.vhdl b/testsuite/synth/dispin01/pkg_rec01.vhdl new file mode 100644 index 000000000..c2048c3ea --- /dev/null +++ b/testsuite/synth/dispin01/pkg_rec01.vhdl @@ -0,0 +1,9 @@ +library ieee; +use ieee.std_logic_1164.all; + +package rec01_pkg is + type myrec is record + a : std_logic; + b : std_logic; + end record; +end rec01_pkg; |