你好朋友和专业程序员,我是这个 VHDL 世界的新手,我有这个问题。我想做这个:
if counter >= 0 and counter <=95 then
aux_Hs <= '0';
else
aux_Hx <= '1';
end if;
在这样的事情中:
aux_Hs <= (counter >= 0 and counter <=95);
出现此错误:
第 73 行。aux_Hs 的类型与 and 的类型不兼容。
aux_Hs
是一个信号STD_Logic
。
有什么方法可以保存IF语句吗?伪“?:”指令?.
先感谢您 :)