我知道这是一个相当普遍的问题。无论如何,通过论坛,对于给定的 VHDL 代码,我无法找到令人满意的答案来解释为什么会出现以下 CT 错误。你能帮我吗?
VHDL 代码
library IEEE;
use IEEE.std_logic_1164.all;
entity design is
port(clk:IN std_logic;
reset:IN std_logic;
A:IN std_logic;
B:IN std_logic;
Q:OUT std_logic);
end design;
architecture behave of design is
--signal R0,R1,R2,R3,R4:std_logic;
begin
process(clk,reset)
variable R0,R1,R2,R3,R4:std_logic;
begin
if (reset='1') then
R0:='0';
R1:='0';
R2:='0';
R3:='0';
R4:='0';
elsif falling_edge(clk) then
R0:=R4;
R1:=R0 xor A;
R2:=R1 xor B;
R3:=R2;
R4:=R2 xor R3;
end if;
end process;
Q<=R4; -- ERROR POINTED HERE
end behave;
错误:-
Error (10482): VHDL error at design.vhd(31): object "R4" is used but not declared
是否有一种将变量分配给端口的正确方法,我错过了?