COMP96_0071エラー: 演算対象に対して、演算子"<operator>" が定義されていません

概要

COMP96_0071エラーは未定義の演算子を使用することにより通知されます。

entity en is
end;

architecture ar of en is
 signal a : integer;
 signal c : bit_vector(3 downto 0);
 signal d : bit_vector(3 downto 0);
begin
  d<= a+c; --COMP96_0071
end;

対応方法

次のどちらかの方法で対応してください。



Printed version of site: support.aldec.com/jp/support/resources/documentation/faq/1735