blob: e76381ae854601f745ae8fee3b09fbb82ee93158 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
entity test is
end entity;
architecture rtl of test is
signal sig : unsigned(1 downto 0);
begin
end architecture;
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
entity test1 is
end entity;
architecture rtl of test1 is
begin
i_test : entity work.test;
p_proc : process
alias sig is <<signal i_test.sig : unsigned>>;
begin
sig <= force "11";
wait;
end process;
end architecture;
|