blob: 7895a602c04f5dfd2ac0028312a138829b20ec60 (
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 test is
port (i : std_ulogic;
o : out std_ulogic);
end entity test;
architecture behaviour of test is
procedure zot(e: inout std_ulogic) is
begin
e := '0';
end;
begin
execute1_1: process(all)
variable blah: std_ulogic;
begin
blah := i;
zot(blah);
o <= blah;
end process;
end architecture behaviour;
|