vhdl高手进(序列发生器)
本人要设计一个序列发生器(00010111)下面是我的vhdl,可是老出错。哪位高手指点一下libraryieee;entityxulieisport(cr,cp:inb...
本人要设计一个序列发生器(00010111)
下面是我的vhdl,可是老出错。哪位高手指点一下
library ieee;
entity xulie is
port(cr,cp:in bit;
buffer:q bit_vector(2 downto 0));
end xulie;
architecture rtl of xulie is
signal d:bit;
begin
process(cr,cp,d,q)
begin
if(cr='0')then
q<="000";
elsif(cp'event and cp='1')then
d<=(q(2) xnor q(0)) or((not q(2))and q(1));
q(2)<=q(1);
q(1)<=q(0);
q(0)<=d;
end if;
end process;
end rtl; 展开
下面是我的vhdl,可是老出错。哪位高手指点一下
library ieee;
entity xulie is
port(cr,cp:in bit;
buffer:q bit_vector(2 downto 0));
end xulie;
architecture rtl of xulie is
signal d:bit;
begin
process(cr,cp,d,q)
begin
if(cr='0')then
q<="000";
elsif(cp'event and cp='1')then
d<=(q(2) xnor q(0)) or((not q(2))and q(1));
q(2)<=q(1);
q(1)<=q(0);
q(0)<=d;
end if;
end process;
end rtl; 展开
3个回答
AiPPT
2024-09-19 广告
2024-09-19 广告
随着AI技术的飞速发展,如今市面上涌现了许多实用易操作的AI生成工具1、简介:AiPPT: 这款AI工具智能理解用户输入的主题,提供“AI智能生成”和“导入本地大纲”的选项,生成的PPT内容丰富多样,可自由编辑和添加元素,图表类型包括柱状图...
点击进入详情页
本回答由AiPPT提供
展开全部
library ieee;
后要有引用子库:
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
use ieee.std_logic_arith.all;
等子库
后要有引用子库:
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
use ieee.std_logic_arith.all;
等子库
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询