diff options
Diffstat (limited to 'testsuite/synth/pkg01/cmask.vhdl')
-rw-r--r-- | testsuite/synth/pkg01/cmask.vhdl | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testsuite/synth/pkg01/cmask.vhdl b/testsuite/synth/pkg01/cmask.vhdl new file mode 100644 index 000000000..f2fe1a075 --- /dev/null +++ b/testsuite/synth/pkg01/cmask.vhdl @@ -0,0 +1,14 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity cmask is + port (d : std_logic_vector (7 downto 0); + o : out std_logic_vector (7 downto 0)); +end cmask; + +use work.pkg.all; + +architecture behav of cmask is +begin + o <= d and mask; +end behav; |