我在 VHDL 测试用例上运行 modelsim 时遇到错误,我无法理解为什么这是一个错误。
测试用例:
LIBRARY IEEE;
Use ieee.std_logic_1164.all;
entity a is
port (in11 : in std_logic
);
end a;
a的架构a是:
component b_1
port ( in1 : in bit);
end component;
begin
inst : b_1 port map ( in1=> **to_Bit**(in11));
end a;