求教, 仿真就出错了

2019-07-15 21:42发布

library ieee;
use ieee.std_logic_1164.all;

entity first is
        port(x:in std_logic_vector(1 downto 0);
                        y:out std_logic_vector(1 downto 0));
        end first;

architecture behave of first is
        begin
                y(1)<=x(1);
                y(0)<=x(0);
        
        end behave;



QQ图片20170516091749.png


刚下载的9.0,前边都没错,也没警告,到了 仿真就出错了。

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。