blob: 16068cdf72b5fcd30e05a74d2a915eca0e609bbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
entity test is
end test;
architecture only of test is
procedure doit is
begin
report "PROCEDURE CALLED!";
end procedure;
begin -- only
process
begin -- process doit
doit;
report "TEST PASSED";
wait;
end process;
end only;
|