aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/pyunit/SimplePackage.vhdl
diff options
context:
space:
mode:
authorPatrick Lehmann <Patrick.Lehmann@plc2.de>2022-12-19 22:07:02 +0100
committerPatrick Lehmann <Patrick.Lehmann@plc2.de>2022-12-23 23:44:14 +0100
commit5853a37df7c9468a01d62f7b2eeee7d9773e72ca (patch)
tree8294b3c6850caa35070084c67d8c0d172981da85 /testsuite/pyunit/SimplePackage.vhdl
parent09b985a65469e28d46cf05a3d7e4957be84f69c7 (diff)
downloadghdl-5853a37df7c9468a01d62f7b2eeee7d9773e72ca.tar.gz
ghdl-5853a37df7c9468a01d62f7b2eeee7d9773e72ca.tar.bz2
ghdl-5853a37df7c9468a01d62f7b2eeee7d9773e72ca.zip
Restructured test example sourcefiles.
Diffstat (limited to 'testsuite/pyunit/SimplePackage.vhdl')
-rw-r--r--testsuite/pyunit/SimplePackage.vhdl15
1 files changed, 0 insertions, 15 deletions
diff --git a/testsuite/pyunit/SimplePackage.vhdl b/testsuite/pyunit/SimplePackage.vhdl
deleted file mode 100644
index dca7e15dc..000000000
--- a/testsuite/pyunit/SimplePackage.vhdl
+++ /dev/null
@@ -1,15 +0,0 @@
-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;