blob: 7e76664d788a28098a5a0f3f905418c691277653 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
library ieee;
use ieee.std_logic_1164.all;
entity rec2 is
port (a : out std_logic;
b : std_logic_vector(7 downto 0));
end;
architecture behav of rec2 is
type my_rec is record
a : std_logic;
b : std_logic_vector(7 downto 0);
end record;
signal s : my_rec;
begin
s.b <= b;
a <= s.a;
s.a <= '1' when s.b /= x"00" else '0';
s.b (1) <= '0';
end behav;
|