blob: 368d305af37ed8a9b17110faa76ebdbc8701e7f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
entity test is
end entity test;
architecture beh of test is
type t_msg_id_panel is array (natural range <>) of boolean;
procedure enable_log_msg(
variable msg_id_panel : t_msg_id_panel
)is begin
end procedure;
procedure enable_log_msg(
msg : string
)is begin
end procedure;
begin
process(all)
begin
enable_log_msg("Test test");
end process;
end architecture beh;
|