blob: 5d63ff45534dee90bc22885c53bc70febb91fe75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.numeric_std.all;
entity ent is
generic (
W : integer := 1
);
port (
wen : in std_logic_vector(W-1 downto 0)
);
end entity ent;
architecture rtl of ent is
begin
process begin
report "Hello world from ent." severity note;
wait;
end process;
end rtl;
|