关于VHDL的错误 60

我检查了即便没有错误,是按课本的报告写得,可是还是出错libraryieee;useieee.std_logic_1164.all;entitymux3isport(in... 我检查了即便没有错误,是按课本的报告写得,可是还是出错
library ieee;
use ieee.std_logic_1164.all;
entity mux3 is
port(in1,in2,in3,in4 : in std_logic_vector(2 downto 0);
sel : in std_logic_vector(1 downto 0);
out1 : out std_logic_vector(2 downto 0));
end mux3;
architecture arc_mux of mux3 is
begin
process(in1,in2,in3,in4.sel)
begin
case sel is
when "00"=>out1<=in1;
when "01"=>out1<=in2;
when "10"=>out1<=in3;
when "11"=>out1<=in4;
when others=>out1<="XXXX";
end case;
end process;
end arc_mux;

没法截图,这是底下的错误重点是前三句
Error (10448): VHDL error at /MUX3.vhd(10): record type std_logic_vector is used but not declared
Error: Quartus II Analysis & Synthesis was unsuccessful. 1 error, 0 warnings
Error: Peak virtual memory: 207 megabytes
Error: Processing ended: Thu Sep 11 09:32:10 2014
Error: Elapsed time: 00:00:01
Error: Total CPU time (on all processors): 00:00:01
Error: Quartus II Full Compilation was unsuccessful. 3 errors, 0 warnings
有时候我弄完了第一个文件,再弄第二个时,左上角的蓝色插头仍显示第一个文件的名称,这时再编译总是出粗是什么情况????????
展开
 我来答
来自度假村占尽风流的萤石
2014-09-11 · TA获得超过2260个赞
知道小有建树答主
回答量:610
采纳率:62%
帮助的人:553万
展开全部
process(in1,in2,in3,in4.sel) 这里面的"点"应该是“逗号” 估计是你抄错了吧
百度网友ba14fbee3
2014-09-11 · TA获得超过302个赞
知道小有建树答主
回答量:253
采纳率:100%
帮助的人:135万
展开全部
把常用的几个包都加上,
比如USE IEEE.STD_LOGIC_ARITH.ALL;
USE IEEE.STD_LOGIC_UNSIGNED.ALL;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
酥洛少7610
2014-09-11 · 超过55用户采纳过TA的回答
知道答主
回答量:164
采纳率:100%
帮助的人:127万
展开全部
端口声明“port(int1,int2 : in bit_vector; pout : out bit_vector);”中的bit_vector没有指明数组下标的范围。
追问
那要怎么改,具体点,你打的啥啊
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式