blob: d7d921c5080ff7e8edde40754522b27f77e49da7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
entity test is
end test;
architecture test of test is
subtype word is unsigned (15 downto 0);
subtype byte is unsigned (7 downto 0);
signal w: word;
signal b: byte;
signal mask: byte;
begin
w <= (byte'range => (b and mask), others => '1');
end test;
|