blob: 202a2b9d09b90f5f991a322dd218b2bc683aaa11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
entity ent is
end entity;
architecture a of ent is
constant SimulationTime_c : time := 10000 sec;
begin
process begin
report "Hello world" severity note;
wait;
end process;
end;
|