blob: 444230cf468c751aba5a59677326fcec849b99ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
entity ent1 is
end entity;
architecture a of ent1 is
begin
main : process
begin
wait for 0 ns; -- Comment and it exits with code 1
std.env.stop(1);
wait;
end process;
end architecture;
|