微波EDA网,见证研发工程师的成长!
首页 > 研发问答 > 嵌入式设计讨论 > FPGA,CPLD和ASIC > quartus调用modelsim仿真时出现Fatal error in Process line__12

quartus调用modelsim仿真时出现Fatal error in Process line__12

时间:10-02 整理:3721RD 点击:
VHDL代码:
library ieee;
use ieee.std_logic_1164.all;
entity mux is
        port(a,b,c,d,s0,s1:in std_logic;
                  y:out std_logic);
end mux;
architecture mux_arch of mux is
        signal sel:integer range 0 to 3;
begin
        process(a,b,c,d,s0,s1)
        begin
        sel y y y y <= d;
        end case;
        end process;
end mux_arch;
quartus和modelsim联调仿真时,modelsim中出现Fatal error in Process line__12 at E:/quartus project/mux41/mux.vhd line 17怎么解决,大神帮帮忙!
               


Copyright © 2017-2020 微波EDA网 版权所有

网站地图

Top