diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2022-12-19 22:07:02 +0100 |
---|---|---|
committer | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2022-12-23 23:44:14 +0100 |
commit | 5853a37df7c9468a01d62f7b2eeee7d9773e72ca (patch) | |
tree | 8294b3c6850caa35070084c67d8c0d172981da85 /testsuite/pyunit/dom/examples/SimplePackage.vhdl | |
parent | 09b985a65469e28d46cf05a3d7e4957be84f69c7 (diff) | |
download | ghdl-5853a37df7c9468a01d62f7b2eeee7d9773e72ca.tar.gz ghdl-5853a37df7c9468a01d62f7b2eeee7d9773e72ca.tar.bz2 ghdl-5853a37df7c9468a01d62f7b2eeee7d9773e72ca.zip |
Restructured test example sourcefiles.
Diffstat (limited to 'testsuite/pyunit/dom/examples/SimplePackage.vhdl')
-rw-r--r-- | testsuite/pyunit/dom/examples/SimplePackage.vhdl | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/testsuite/pyunit/dom/examples/SimplePackage.vhdl b/testsuite/pyunit/dom/examples/SimplePackage.vhdl new file mode 100644 index 000000000..04df1c521 --- /dev/null +++ b/testsuite/pyunit/dom/examples/SimplePackage.vhdl @@ -0,0 +1,28 @@ +-- Author: Patrick Lehmann +-- +-- A collection of utility types and functions. +-- +library ieee; +use ieee.std_logic_1164.all; +use ieee.numeric_std.all; + +-- Utility package +package utilities is + -- Deferred constant to distinguish simulation from synthesis. + constant IS_SIMULATION : boolean; + +end package; + +package body utilities is + function simulation return boolean is + variable result : boolean := false; + begin + -- synthesis translate off + result := true; + -- synthesis translate on + return result; + end function; + + constant IS_SIMULATION : boolean := simulation; + +end package body; |