blob: b666d5e630e7a26481d4e40198131aaa92bbc74b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
entity ent2 is
end entity;
architecture a of ent2 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;
|