不知道为什么装了xilinx7.1和medelsim6.0后,只要输入端口数据类型为integer的总是在仿真时出现如下错误:
Index constraint cannot be applied to non-array type integer.
以下是一简单例子和出现的错误:
entity testboolean is
port(a,b:in integer range 0 to 7;
c:out integer range 0 to 7);
end testboolean;
architecture Behavioral of testboolean is
begin
process(a,b)
begin
if(ab)then
c
最新人才