VHDL语言问题?
libraryieee;useieee.std_logic_1164.all;useieee.std_logic_unsigned.all;entityxulieispo...
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity xulie is
port( clk:in std_logic;
dout:out std_logic
);
end;
architecture one of xulie is
signal reg:std_logic_vector(7 downto 0);
begin
reg<="10110101";
dout<=reg(7);
process(clk)
begin
if clk'event and clk='1' then
reg<=reg(6 downto 0) & reg(7);
end if;
end process;
end;
编写的一个序列发生器,请问我错在哪了?谢谢! 展开
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity xulie is
port( clk:in std_logic;
dout:out std_logic
);
end;
architecture one of xulie is
signal reg:std_logic_vector(7 downto 0);
begin
reg<="10110101";
dout<=reg(7);
process(clk)
begin
if clk'event and clk='1' then
reg<=reg(6 downto 0) & reg(7);
end if;
end process;
end;
编写的一个序列发生器,请问我错在哪了?谢谢! 展开
1个回答
展开全部
reg<="10110101";
应该在定义时赋初值
你那样写会和进程里面的操作冲突,已经编译通过
程序如下:
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity xulie is
port( clk:in std_logic;
dout:out std_logic
);
end;
architecture one of xulie is
signal reg:std_logic_vector(7 downto 0):="10110101";
begin
dout<=reg(7);
process(clk)
begin
if clk'event and clk='1' then
reg<=reg(6 downto 0) & reg(7);
end if;
end process;
end;
应该在定义时赋初值
你那样写会和进程里面的操作冲突,已经编译通过
程序如下:
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity xulie is
port( clk:in std_logic;
dout:out std_logic
);
end;
architecture one of xulie is
signal reg:std_logic_vector(7 downto 0):="10110101";
begin
dout<=reg(7);
process(clk)
begin
if clk'event and clk='1' then
reg<=reg(6 downto 0) & reg(7);
end if;
end process;
end;
威孚半导体技术
2024-08-19 广告
2024-08-19 广告
威孚(苏州)半导体技术有限公司是一家专注生产、研发、销售晶圆传输设备整机模块(EFEM/SORTER)及核心零部件的高科技半导体公司。公司核心团队均拥有多年半导体行业从业经验,其中技术团队成员博士、硕士学历占比80%以上,依托丰富的软件底层...
点击进入详情页
本回答由威孚半导体技术提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询